Latest 100 public snipts »
robertbanh's
snipts » cmd
showing 1-2 of 2 snipts for cmd
-
∞ linux AT command
// linux at command > at 03:30 -v > nohup php -f /x/x/x.php > /x/x/logs > nohup php -f /rg/repos/trunk/import/importxx-2009.php > ~rbanh/importlogs2009 > (Ctrl+D) > atq // to view queue > atrm 1 // cancel job 1 > at 1am tomorrow -v // tomorrow 1am
-
∞ recursive command to perform sudo actions
// linux: recursive command to perform sudo actions find . -print | sed -e 's/^/\"/' -e 's/$/\"/' | xargs sudo ...


