linux 后台把命令挂起来... + 命令下载网络数据

有时候后台的任务运行完要好久,但又想关电脑或者退出shell,那么就用nohup吧:

nohup <命令> &   

例:把test.py挂起来了

nohup python test.py& 

参考:https://www.cnblogs.com/pangguoming/p/5956823.html


命令下载网上的数据,(用axel):

http://blog.csdn.net/wmengbeyond/article/details/36056841

例子:

axel -o /data/ http://www.fit.vutbr.cz/~imikolov/rnnlm/simple-examples.tgz

-o指定存放在某个目录下,默认为~/download


待续......

你可能感兴趣的:(linux)