mirror of https://github.com/CrimsonTome/tldr.git
Merge pull request #284 from TechplexEngineer/patch-2
add the regex for whitespace replacewaldyrious/alt-syntax
commit
cd10117073
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> renames multiple files
|
> renames multiple files
|
||||||
|
|
||||||
- Change foo to bar in matching files
|
- Change foo to bar in matching filenames
|
||||||
|
|
||||||
`rename {{'s/foo/bar/'}} {{*.txt}}`
|
`rename {{'s/foo/bar/'}} {{*.txt}}`
|
||||||
|
|
||||||
|
@ -13,3 +13,8 @@
|
||||||
- Replace whitespace with underscores
|
- Replace whitespace with underscores
|
||||||
|
|
||||||
`rename --nows {{*.txt}}`
|
`rename --nows {{*.txt}}`
|
||||||
|
`rename 's/\s+/_/g' {{*.txt}}`
|
||||||
|
|
||||||
|
- No action, just show what renames would occur
|
||||||
|
|
||||||
|
`rename -n {{'s/foo/bar/'}} {{*.txt}}`
|
||||||
|
|
Loading…
Reference in New Issue