rm

  1. Remove single file
     rm application.log
  2. Remove all files in current directory
     rm ./*
     for f in *; do rm -f "$f"; done
  3. Remove all files in current directory by template
     rm ./*.txt
  4. Remove not empty folder
     rm ./folder -r