13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# klevstul :: 24.06
|
|
|
|
this_file_name=`basename "$0"`
|
|
if [ $# -lt 1 ]; then
|
|
echo "error: path to file is missing."
|
|
echo "usage: '$this_file_name [path_to_file]'"
|
|
exit 1
|
|
fi
|
|
|
|
lfMultiSelectHandler.sh trash-put "$@"
|