Skip to content

Instantly share code, notes, and snippets.

@JoshCrosby
Forked from staydecent/renamefiles.fish
Created January 3, 2018 02:34
Show Gist options
  • Save JoshCrosby/0cc1836b480893b847595e28bf02ab3d to your computer and use it in GitHub Desktop.
Save JoshCrosby/0cc1836b480893b847595e28bf02ab3d to your computer and use it in GitHub Desktop.
File renaming pattern for Fish Shell with OSX sed
# 'Item*' it the pattern to look for
# sed "s/I/i/g" is the replacement pattern
for f in Item*; mv $f (echo {$f} | sed "s/I/i/g"); end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment