I got to know about shred yesterday.
I want to know the proper way of removing files with it.
Should I first shred the file and then use rm to remove it?
$
shred <file>
$
rm <file>
Or should I just use the shred command with the -u option?
$
shred -u <file>
Which of these is better? :)