EnnoxHD / archlinux-install-guide

ArchLinux Installation Guide
MIT License
1 stars 0 forks source link

Shredding files #62

Closed EnnoxHD closed 1 year ago

EnnoxHD commented 2 years ago

Add a function for shredding/deleting files to the .bashrc file:

function shred {
  /usr/bin/shred "$1" && rm "$1"
}