Created
May 30, 2026 23:22
-
-
Save stephenlauck/a88a06bff62be563d28b2571cfe36ab2 to your computer and use it in GitHub Desktop.
Format Drives
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export DISK_PATH=/dev/disk/by-id/usb-Sabrent_Dual_SATA_Bridge_*; ls DISK_PATH | xargs -r -I{} -P0 bash -c 'sudo umount /mnt/*; sudo rm -rf /mnt/*; sudo mkfs.ext4 -F {}'; sudo udevadm settle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment