remove all files linux command code example
Example 1: remove all files inside directory linux
# remove everything in a directory
rm /path/to/dir/*
# remove all sub-directories and files
rm -r /path/to/dir/*
Example 2: how to delete file using bash
rm <filename>
rm something.html
rm ./dist/something.html