Back

WOW

Things that made me go ^^


Super long pipe command


crontab -l | grep -v '^#' | sort -k2g | grep -Eo '/home/<user>/.*\.sh' | awk '{print $1}' | tr -d '"' | uniq | xargs tail -n +1 | grep -Eo '\s([A-Za-z]\.*){2,}\s[$]' | tr -d '$' | sort -t '.' -k1g | uniq

It’s non-optimal, I’m sure. But it works enough for what I’m looking for! Bonus points if you can figure out what it does.

Standouts from above


Next comes later