mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-22 18:43:02 +00:00
commit
985c0c7d6a
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ hello vim
|
|||
|
||||
The breakdown:
|
||||
- `.!` executes the filter command on the current line.
|
||||
- `!tr '[:lower:]' '[:upper:]'` calls the `tr` command to replace all lowercase characters with uppercase ones.
|
||||
- `tr '[:lower:]' '[:upper:]'` calls the `tr` command to replace all lowercase characters with uppercase ones.
|
||||
|
||||
It is imperative to pass a range to run the external command as a filter. If you try running the command above without the `.` (`:!tr '[:lower:]' '[:upper:]'`), you will see an error.
|
||||
|
||||
|
|
Loading…
Reference in a new issue