Refactor: change "folder" to "directory" where needed.

This commit fixes every instance in which the word "folder" is
incorrectly used instead of "directory".
This commit is contained in:
Marco Bonelli
2019-02-11 19:00:49 +01:00
committed by Agniva De Sarker
parent 2484529a83
commit 2599a6de48
65 changed files with 202 additions and 202 deletions

View File

@@ -3,15 +3,15 @@
> Multi-pattern string replacement and file renaming tool.
> Homepage: <https://github.com/jlevy/repren>.
- Do a dry-run renaming a folder of pngs with a literal string replacement:
- Do a dry-run renaming a directory of pngs with a literal string replacement:
`repren --dry-run --rename --literal --from '{{find_string}}' --to '{{replacement_string}}' {{*.png}}`
- Do a dry-run renaming a folder of jpegs with a regular expression:
- Do a dry-run renaming a directory of jpegs with a regular expression:
`repren --rename --dry-run --from '{{regular_expression}}' --to '{{replacement_string}}' {{*.jpg}} {{*.jpeg}}`
- Do a find-and-replace on the contents of a folder of csv files:
- Do a find-and-replace on the contents of a directory of csv files:
`repren --from '{{([0-9]+) example_string}}' --to '{{replacement_string \1}}' {{*.csv}}`