mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2025-07-13 08:19:56 +02:00
Xargs
- Prompt commands before running commands
This commit is contained in:
@ -685,6 +685,11 @@ awk '{$6 = $4 - prev5; prev5 = $5; print;}'
|
|||||||
xargs -d\t
|
xargs -d\t
|
||||||
```
|
```
|
||||||
|
|
||||||
|
##### Prompt commands before running commands
|
||||||
|
```bash
|
||||||
|
ls|xargs -L1 -p head
|
||||||
|
```
|
||||||
|
|
||||||
##### Display 3 items per line
|
##### Display 3 items per line
|
||||||
```bash
|
```bash
|
||||||
echo 1 2 3 4 5 6| xargs -n 3
|
echo 1 2 3 4 5 6| xargs -n 3
|
||||||
|
Reference in New Issue
Block a user