pull/558/merge
Shubham Bhattar 2023-10-18 02:52:51 -03:00 committed by GitHub
commit 65af3b8a71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ Notes:
- To go back to the previous working directory: `cd -`.
- If you are halfway through typing a command but change your mind, hit **alt-#** to add a `#` at the beginning and enter it as a comment (or use **ctrl-a**, **#**, **enter**). You can then return to it later via command history.
- If you are halfway through typing a long command but you suddenly remember that you need to run another command before this command, hit **ctrl-u**. This will the cut the part from the beginning of the line to the cursor. This will stay in your clipboard and then you can paste it when required using **ctrl-y**.
- Use `xargs` (or `parallel`). It's very powerful. Note you can control how many items execute per line (`-L`) as well as parallelism (`-P`). If you're not sure if it'll do the right thing, use `xargs echo` first. Also, `-I{}` is handy. Examples:
```bash