Remove a specific range of files at once from the command line
$ rm file[1,23].pdf
will remove three files: 1, 2, 3; not files from 1 to 23.
If you want to remove file 1 to 23 use:
$ rm file{1..23}.pdf
Try with ls
first.
personal computing command-line interface (cli) gnu linux trisquel shell literacy office applications wiki ls rm offline