Tag: unix

Quick condor queueing from batch command files

This takes a file cmds.batch and submits every line as a shell command to the condor queue. cmds.batch [code lang=”bash”] cd working_dir;python /exec_path/script.py -param1 > logfile.log 2>&1; cd…

Useful bash commands

Add several commands to queue at once [code lang=”bash”] echo “call0;call1;” | at -q b -m now [/code] Delete all queued jobs [code lang=”bash”] atrm $(atq | cut…