Skip to content
Advertisement

linux batch rename directories and strip # character from name

i have a directory with a lot of subdirectories with a # infront of them:

JavaScript

I want to rename them all and remove the # caracter I tried to do:

JavaScript

but didn’t seem to work.

JavaScript

Any ideas on this. Thanks

Advertisement

Answer

Just use

JavaScript

use -n just to check that what you think it would happen really happens. In you example you have the clue about the wrong quotes used (backticks) in the error message

JavaScript

bash is trying to execute a command named s/#//g.

No that using g (global) and not anchoring the regular expression you will replace any #, not just the one in the first position.

Advertisement