6 lines
77 B
Bash
6 lines
77 B
Bash
#!/bin/sh
|
|
#
|
|
# Front end to securely delete a file on Linux
|
|
#
|
|
exec shred "$@"
|