13 lines
382 B
Markdown
13 lines
382 B
Markdown
---
|
|
functions:
|
|
execute-non-interactive:
|
|
- code: echo yyy | xargs -Ixxx /usr/bin/id
|
|
sudo-enabled:
|
|
- code: echo yyy | sudo xargs -Ixxx /usr/bin/id
|
|
suid-enabled:
|
|
- code: echo yyy | xargs -Ixxx /usr/bin/id
|
|
file-read:
|
|
- description: This relies on the fact the the file doesn't contain a null char (ASCII 0).
|
|
code: xargs --arg-file=file_to_read -0 echo
|
|
---
|