Syntax cleanup, removed some non-working SUID entries

This commit is contained in:
Emanuel Duss
2020-11-13 11:56:48 +01:00
parent bd1e3ce65d
commit 764b2685bc
16 changed files with 65 additions and 105 deletions

View File

@@ -3,13 +3,13 @@ functions:
file-read:
- code: |
LFILE=file_to_read
column "$LFILE"
column $LFILE
suid:
- code: |
LFILE=file_to_read
./column "$LFILE"
./column $LFILE
sudo:
- code: |
LFILE=file_to_read
sudo column "$LFILE"
sudo column $LFILE
---