Skip to content

Instantly share code, notes, and snippets.

@var-bin
Last active March 9, 2017 19:31
Show Gist options
  • Save var-bin/7d31f3bbd9620ccf464858c77422f997 to your computer and use it in GitHub Desktop.
Save var-bin/7d31f3bbd9620ccf464858c77422f997 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [[ -f "$1" ]]
then
echo "Removing file ${1}"
rm "$1"
elif [[ -d "$1" ]]
then
echo "Removing dir ${1}"
rm -r "$1"
else
echo "Can't remove ${1}"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment