How To Quickly Shred A File Using Linux Terminal
Here’s how to quickly shred a file using Linux terminal:
1. Issue the following command at the terminal –
shred -uvzn <number of passes> <file name>
where,
u – remove file at the end of all iterations
v – verbose
z – overwrite with zeroes
n <number of passes> – number of times the file should be overwritten before removal
<file name> –...