Find

$ find ../trunk3 -name "ccccc" | xargs stat -c "%y %s %n"

find . -printf "%T@ %Tc %p\n" | sort -n

Grep binary file

$ grep -an

Grep with regex

grep -o "#({.*})"

grep -o "\"remainingAttempts\":.\{0,3\}"

Awk

awk < file '{ print $2 }'

Sed

Create a group and replace by the group

sed "s/#(\({.*}\))/\1/"

Clear blank spaces

cat out2 | sed ‘s/\(\s\)*g’ > out3