Reorder functions in binaries

This commit is contained in:
Emilio Pinna
2018-07-04 19:26:52 +01:00
parent 80b20b6991
commit d6895f367d
81 changed files with 1171 additions and 1123 deletions

View File

@@ -3,16 +3,16 @@ description: |
The read file content is corrupted by replacing occurrences of `$'\b_'` to
terminal sequences and by converting tabs to spaces.
functions:
sudo-enabled:
- code: |
LFILE=file_to_read
sudo ul "$LFILE"
suid-enabled:
- code: |
LFILE=file_to_read
./ul "$LFILE"
file-read:
- code: |
LFILE=file_to_read
ul "$LFILE"
- code: |
LFILE=file_to_read
ul "$LFILE"
suid-enabled:
- code: |
LFILE=file_to_read
./ul "$LFILE"
sudo-enabled:
- code: |
LFILE=file_to_read
sudo ul "$LFILE"
---