diff --git a/README.md b/README.md index b0f9106..ae70199 100644 --- a/README.md +++ b/README.md @@ -685,6 +685,11 @@ awk '{$6 = $4 - prev5; prev5 = $5; print;}' xargs -d\t ``` +##### Prompt commands before running commands +```bash +ls|xargs -L1 -p head +``` + ##### Display 3 items per line ```bash echo 1 2 3 4 5 6| xargs -n 3