Merge pull request #106 from fordhurley/page-rename

Add rename.md
waldyrious/alt-syntax
Romain Prieto 2014-02-24 09:58:58 +11:00
commit ceb00f1616
1 changed files with 15 additions and 0 deletions

15
common/rename.md Normal file
View File

@ -0,0 +1,15 @@
# rename
> renames multiple files
- Change foo to bar in matching files
`rename {{'s/foo/bar/'}} {{*.txt}}`
- Convert to lower case
`rename -c {{*.txt}}`
- Replace whitespace with underscores
`rename --nows {{*.txt}}`