随笔分类 -  linux

摘要:1、wget 1 wget http://test.com/testfile.zip ->下载指定文件到当前文件夹 2 wget -O wordpress.zip http://test.com/download ->指定保存名字 3 wget --limit-rate=300k http://ww 阅读全文
posted @ 2020-03-01 19:45 狂奔蜗牛coding 阅读(190) 评论(0) 推荐(0)
摘要:一、docker安装 1、卸载旧版本 1 sudo yum remove docker \ 2 docker-client \ 3 docker-client-latest \ 4 docker-common \ 5 docker-latest \ 6 docker-latest-logrotate 阅读全文
posted @ 2020-02-26 23:21 狂奔蜗牛coding 阅读(431) 评论(0) 推荐(0)
摘要:1 ps aux|grep python|grep -v grep|cut -c 9-15|xargs kill -15 2 3 管道符“|”用来隔开两个命令,管道符左边命令的输出会作为管道符右边命令的输入。下面说说用管道符联接起来的 4 5 几个命令: 6 7 “ps aux”是linux 里查看 阅读全文
posted @ 2019-12-30 14:40 狂奔蜗牛coding 阅读(827) 评论(0) 推荐(0)