Linux Shell
sed 's/^/InsertCharsHere/' file.txt > new-file.txtfind / -perm -u=s -type f 2>/dev/nullfind / -perm -4000 -type f -exec ls -la {} 2>/dev/null \;
find / -uid 0 -perm -4000 -type f 2>/dev/nullgetcap -r / 2>/dev/nullgrep -E -o "([0-9]{1,3}[\.]){3}[0-9]{1,3}" filenamegrep -rnw '/path/to/somewhere/' -e 'pattern'
-r or -R is recursive,
-n is line number, and
-w stands for match the whole word.
-l (lower-case L) can be added to just give the file name of matching files.
-e is the pattern used during the searchLast updated