Skip to content

Instantly share code, notes, and snippets.

@banyan
Created January 7, 2010 01:45
Show Gist options
  • Select an option

  • Save banyan/270886 to your computer and use it in GitHub Desktop.

Select an option

Save banyan/270886 to your computer and use it in GitHub Desktop.
#!/bin/sh
trash=$HOME/trash
if [ ! -d $trash ]
then
mkdir -p $trash
fi
for i
do
mv -f $i $trash
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment