fd, fdp, finger: add pt_BR translation (#9366)

This commit is contained in:
Gabriel Rodrigues
2022-10-28 21:43:04 -03:00
committed by GitHub
parent e81d293482
commit 0fba988587
5 changed files with 89 additions and 11 deletions

View File

@@ -8,22 +8,22 @@
`fd {{pattern}}`
- Find files that begin with "foo":
- Find files that begin with `foo`:
`fd {{'^foo'}}`
`fd '^foo'`
- Find files with a specific extension:
`fd --extension {{txt}}`
`fd --extension txt`
- Find files in a specific directory:
`fd {{pattern}} {{path/to/directory}}`
`fd '{{pattern}}' {{path/to/directory}}`
- Include ignored and hidden files in the search:
`fd --hidden --no-ignore {{pattern}}`
`fd --hidden --no-ignore '{{pattern}}'`
- Execute a command on each search result returned:
`fd {{pattern}} --exec {{command}}`
`fd '{{pattern}}' --exec {{command}}`