15 lines
240 B
Bash
15 lines
240 B
Bash
#!/usr/bin/env bash
|
|
|
|
# klevstul :: 24.05
|
|
|
|
this_file_name=`basename "$0"`
|
|
echo ":: $this_file_name :: [K] ::"
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "usage: '$this_file_name {path_to_file}'"
|
|
exit 1
|
|
fi
|
|
path_to_file=$1
|
|
|
|
trash-put ${path_to_file}
|