Skip to content

Instantly share code, notes, and snippets.

@elhenro
Created May 22, 2019 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elhenro/c5dad68cc5afbdc644e0a44a4f4a7b19 to your computer and use it in GitHub Desktop.
Save elhenro/c5dad68cc5afbdc644e0a44a4f4a7b19 to your computer and use it in GitHub Desktop.
#!/bin/bash
read -p "Delete all files and dirs in ~/trash/* ? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
rm -rf /home/hnr/trash/*
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment