17 lines
341 B
Markdown
Raw Normal View History

2020-03-18 00:25:54 +11:00
---
description: This only returns ASCII strings, thus it is not suitable for binary files.
functions:
file-read:
- code: |
LFILE=file_to_read
strings "$LFILE"
suid:
- code: |
LFILE=file_to_read
./strings "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo strings "$LFILE"
---