New command: paste

master
Emanuel Duss 2020-11-13 11:59:14 +01:00
parent 9e593b6ac0
commit 28b67bdfd5
1 changed files with 15 additions and 0 deletions

15
_gtfobins/paste.md Normal file
View File

@ -0,0 +1,15 @@
---
functions:
file-read:
- code: |
LFILE=file_to_read
paste $LFILE
suid:
- code: |
LFILE=file_to_read
paste $LFILE
sudo:
- code: |
LFILE=file_to_read
sudo paste $LFILE
---