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

@@ -1,17 +1,19 @@
---
description: |
The read file content is corrupted by a leading space added to each line.
description: 'The read file content is corrupted by a leading space added to each
line.
'
functions:
sudo-enabled:
- code: |
LFILE=file_to_read
sudo nl -bn -w1 -s '' $LFILE
suid-enabled:
- code: |
LFILE=file_to_read
./nl -bn -w1 -s '' $LFILE
file-read:
- code: |
LFILE=file_to_read
nl -bn -w1 -s '' $LFILE
- code: |
LFILE=file_to_read
nl -bn -w1 -s '' $LFILE
suid-enabled:
- code: |
LFILE=file_to_read
./nl -bn -w1 -s '' $LFILE
sudo-enabled:
- code: |
LFILE=file_to_read
sudo nl -bn -w1 -s '' $LFILE
---