You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
205 B

  1. #!/bin/bash
  2. DIR="$(realpath $(dirname "$(readlink -f "$0")"))"
  3. BASH_SCRIPTS_DIR="${DIR}/bash"
  4. BASH_SCRIPTS=(`ls $BASH_SCRIPTS_DIR`)
  5. for FILENAME in "${BASH_SCRIPTS[@]}"; do
  6. rm ${HOME}/${FILENAME}
  7. done