随笔分类 -  shell

摘要:参考: https://blog.51cto.com/2937761/2090137 阅读全文
posted @ 2019-08-22 19:30 anobscureretreat 阅读(177) 评论(0) 推荐(0) 编辑
摘要:输出 参考: https://blog.csdn.net/sinat_36521655/article/details/79296181 阅读全文
posted @ 2019-08-22 19:23 anobscureretreat 阅读(477) 评论(0) 推荐(0) 编辑
摘要:test.sh:pipe="|"eval ls $pipe wc -l 输出bogon:Desktop macname$ ./test.sh 45 test.sh:eval echo \$$# 输出bogon:Desktop macname$ ./test.sh ssd dede ded dedee 阅读全文
posted @ 2019-08-22 19:14 anobscureretreat 阅读(273) 评论(0) 推荐(0) 编辑
摘要:test.sh 输出 参考: https://www.cnblogs.com/jw15327/p/6114886.html 阅读全文
posted @ 2019-08-22 18:54 anobscureretreat 阅读(698) 评论(0) 推荐(0) 编辑
摘要:test.sh 输出 参数:https://www.cnblogs.com/xl520/p/6124545.html 阅读全文
posted @ 2019-08-22 18:52 anobscureretreat 阅读(192) 评论(0) 推荐(0) 编辑
摘要:ts.sh 输出 参考: https://www.cnblogs.com/chuanzhang053/p/8530191.html 阅读全文
posted @ 2019-08-22 17:33 anobscureretreat 阅读(5778) 评论(0) 推荐(0) 编辑
摘要:test.sh 输出 参考: https://blog.csdn.net/sinat_36521655/article/details/79296181 阅读全文
posted @ 2019-08-22 17:25 anobscureretreat 阅读(3092) 评论(0) 推荐(0) 编辑
摘要:解决了使用ln -s target linkName创造软链接无法正确取到真实脚本的问题。 参考: https://www.jb51.net/article/59949.htm 阅读全文
posted @ 2019-08-22 17:08 anobscureretreat 阅读(655) 评论(0) 推荐(0) 编辑
摘要:参考:https://blog.csdn.net/lansesl2008/article/details/20558369/ 阅读全文
posted @ 2019-08-22 09:58 anobscureretreat 阅读(170) 评论(0) 推荐(0) 编辑
摘要:exit命令用于退出当前shell,在shell脚本中可以终止当前脚本执行。 常用参数格式:exit n退出。设置退出码为n。(Cause the shell to exit with a status of n.) 格式:exit退出。退出码不变,即为最后一个命令的退出码。(If n is omi 阅读全文
posted @ 2019-08-21 19:37 anobscureretreat 阅读(306) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.runoob.com/linux/linux-shell-variable.html 阅读全文
posted @ 2019-08-21 11:20 anobscureretreat 阅读(8421) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.cnblogs.com/37yan/p/6962563.html 阅读全文
posted @ 2019-08-21 11:09 anobscureretreat 阅读(380) 评论(0) 推荐(0) 编辑
摘要:在shell脚本中“:”是空命令,表示什么都不做类似于python中的pass 阅读全文
posted @ 2019-08-21 10:28 anobscureretreat 阅读(2607) 评论(0) 推荐(0) 编辑
摘要:netstat -lnp|grep 80|grep -v grep |awk '{print $1}'|xargs kill -9 阅读全文
posted @ 2019-08-16 02:01 anobscureretreat 阅读(1007) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.cnblogs.com/vaelailai/p/7545166.html 阅读全文
posted @ 2019-08-16 01:57 anobscureretreat 阅读(6922) 评论(0) 推荐(0) 编辑
摘要:这条命令的意思是列出系统里面监听网络连接的端口号和相应的进程PID。参数说明:-t:表示列出TCP连接(也可以加上-u参数表示同时列出UDP网络连接)-l:表示列出正在网络监听的服务关键是下面两个参数:-n:表示以端口号来显示-p:表示列出进程PID 参考: https://zhidao.baidu 阅读全文
posted @ 2019-08-16 01:55 anobscureretreat 阅读(1616) 评论(0) 推荐(0) 编辑
摘要:chown 用户名 文件名 -R 阅读全文
posted @ 2019-08-16 01:51 anobscureretreat 阅读(782) 评论(0) 推荐(0) 编辑
摘要:sudo chmod 777 file 阅读全文
posted @ 2019-08-16 01:51 anobscureretreat 阅读(806) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.jb51.net/article/146892.htm 阅读全文
posted @ 2019-07-31 00:39 anobscureretreat 阅读(4594) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.cnblogs.com/zwgblog/p/6006102.html 阅读全文
posted @ 2019-07-31 00:04 anobscureretreat 阅读(291) 评论(0) 推荐(0) 编辑