From 659002adef412bf571c40451da1bc208577015d1 Mon Sep 17 00:00:00 2001 From: Roman Mueller Date: Sat, 16 Jun 2018 14:39:00 +0200 Subject: [PATCH] Add cut --- _gtfobins/cut.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 _gtfobins/cut.md diff --git a/_gtfobins/cut.md b/_gtfobins/cut.md new file mode 100644 index 0000000..bf95134 --- /dev/null +++ b/_gtfobins/cut.md @@ -0,0 +1,11 @@ +--- +functions: + sudo-enabled: + - code: | + LFILE=file_to_read + sudo cut -d "" "$LFILE" -f1 + file-read: + - code: | + LFILE=file_to_read + cut -d "" "$LFILE" -f1 +---