How To Remove Or Delete Several Files At Once With Just One Command In Linux Shell
- Forums
- Linux Hosting
- How To Remove Or Delete Several Files At Once With Just One Command In Linux Shell
This Page Contains information about How To Remove Or Delete Several Files At Once With Just One Command In Linux Shell By linux in category Linux Hosting with 0 Replies. [429], Last Updated: Sat May 18, 2024
linux
Thu May 03, 2007
0 Comments
626 Visits
the rm command accepts multiple filenames as arguments.
lets say i have three file, they are myusers.txt localusers.txt and guests.txt and i want to delete all three at the same time, so this is the command i would run to do that:
rm myusers.txt localusers.txt guests.txt
that's it