Friday, March 25, 2022

Remove all the file in folder

rm -rf *.log

Above command will remove all the file with ".log" instances

No comments:

Post a Comment

Popular Posts

Most Featured Post

GitHub: Squash all commits in PR

  Command Meaning git fetch origin Get the latest origin/master . git reset --soft origin/master Move your branch to match origin/master , b...