Entering edit mode
18 months ago
gavin
▴
10
I run the follwing code in conda enviroment:
nohup cat list.txt | parallel --jobs 10 fastq-dump {} --split-3 --gzip -O ./ > log.txt 2>&1 &
After I logging out from the terminal, the log.txt shows :
parallel: SIGHUP received. No new jobs will be started.
Is there anyway to continue the job after logging out?
Using screen or tmux are better than
nohup
.Thanks for your valuable suggestion!