You can use Linux rm command followed by full or relative path to multiple files and directories to delete multiple files and directories at once.
1 2 3 4 5 |
## Delete multiples files/directories at once rm -r /path1/file1 /path2/file2 /path3/dir1 ## Or using patterns if possible rm -r /path/*.txt |