New command: column

This commit is contained in:
Emanuel Duss 2020-11-12 14:21:00 +01:00
parent 00902fc035
commit ff997ac104

15
_gtfobins/column.md Normal file
View File

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