Skip to content

Instantly share code, notes, and snippets.

@karthiks
Created December 29, 2019 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karthiks/2fcf3ee2001789b0b78e714c9a854bb6 to your computer and use it in GitHub Desktop.
Save karthiks/2fcf3ee2001789b0b78e714c9a854bb6 to your computer and use it in GitHub Desktop.
Remove prefix from multiple files in Linux console

Bash

for file in prefix*; do mv "$file" "${file#prefix}"; done;

The for loop iterates over all files with the prefix. The do removes from all those files iterated over the prefix.

Here is an example to remove "bla_" form the following files:

bla_1.txt
bla_2.txt
bla_3.txt
blub.txt

Command

for file in bla_*; do mv "$file" "${file#bla_}";done;

Result in file system:

1.txt
2.txt
3.txt
blub.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment