Skip to content

Instantly share code, notes, and snippets.

@mlsmrc
Last active March 14, 2025 11:02
Show Gist options
  • Save mlsmrc/8eb4a6f45c616a7d405f0b979d507599 to your computer and use it in GitHub Desktop.
Save mlsmrc/8eb4a6f45c616a7d405f0b979d507599 to your computer and use it in GitHub Desktop.
shreding an sdX linux device
#!/bin/bash
[ $# -ne 1 ] && { echo "missing sdX device as parameter"; exit 1; }
cat /dev/null > shred.log
sudo shred -v -n3 -z /dev/${1} &>> shred_${1}.log &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment