All public logs

Jump to navigation Jump to search

Combined display of all available logs of DN Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 15:10, 3 March 2023 Dave talk contribs created page Linux Dump (Created page with " <nowiki> # to delete empty dirs find -type d -empty -delete # to delete files over some age & empty dirs find /some/path -depth \( \( -type f -daystart -mtime +100 \) -o -type d -empty \) -ls ======================= # Check if script is cron or shell https://stackoverflow.com/questions/3214935/can-a-bash-script-tell-if-its-being-run-via-cron if [ -t 1 ] ; then echo "interacive mode"; else #send mail fi ----------------------- CRON=$(pstree -s $$ | grep -q...")