mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 15:38:28 +01:00
Merge pull request #284 from TechplexEngineer/patch-2
add the regex for whitespace replace
This commit is contained in:
commit
cd10117073
1 changed files with 7 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
> renames multiple files
|
||||
|
||||
- Change foo to bar in matching files
|
||||
- Change foo to bar in matching filenames
|
||||
|
||||
`rename {{'s/foo/bar/'}} {{*.txt}}`
|
||||
|
||||
|
@ -12,4 +12,9 @@
|
|||
|
||||
- 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 a new issue