8 lines
90 B
Bash
8 lines
90 B
Bash
function trash {
|
|
if [[ -z "$1" ]]; then
|
|
trash-list
|
|
else
|
|
trash-put "$@"
|
|
fi
|
|
}
|