6 lines
87 B
Text
6 lines
87 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# Front end to securely delete a file on *BSD and Darwin
|
||
|
#
|
||
|
exec rm -P "$@"
|