#!/bin/sh # # can file # can file1 file2 # will move files to the .trashcan. # # The following works to preserve a single filename with spaces # mv "$*" $HOME/.trashcan # The following is needed for multiple files separated by spaces mv $* $HOME/.trashcan exit