- 
Get all unique file extensions find . -type f ! -path './.git/*' ! -path './node_modules/*' ! -path './.idea/*' ! -path './todo.txt' | perl -ne 'print $1 if m/\.([^.\/]+)$/' | sort -u 
- 
Decompile all .jar file for f in ./*.jar ; do docker run -it --rm -v `pwd`:/mnt --user $(id -u):$(id -g) kwart/jd-cli /mnt/$f -od /mnt/${f%.*}_src; done;
- 
rln -> ln 
find . -type f -name "*.sh" -exec dos2unix {} \+;- Add runnable attributes to files check:
find . -name "*" -exec git ls-files -s {} \;change:
find . -name "*.sh" -type f -exec git update-index --chmod=+x {} \;- Monitor memory
while true; do (/usr/bin/time -v top -n 1 -d 0 -b && sleep 1) 2>&1 >/dev/null | grep 'Maximum resident set size'; done- Measure time and memory consumption by some command
time lsequivalend in powershell:
Measure-Command {start-process whateveryouwantexecute -Wait}
Show secret data on gitlab