1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 17:26:01 +02:00

Merge pull request #106 from fordhurley/page-rename

Add rename.md
This commit is contained in:
Romain Prieto 2014-02-24 09:58:58 +11:00
commit ceb00f1616

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}}`