随笔分类 - shell
摘要:参考: https://blog.51cto.com/2937761/2090137
阅读全文
摘要:输出 参考: https://blog.csdn.net/sinat_36521655/article/details/79296181
阅读全文
摘要: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
阅读全文
摘要:test.sh 输出 参考: https://www.cnblogs.com/jw15327/p/6114886.html
阅读全文
摘要:test.sh 输出 参数:https://www.cnblogs.com/xl520/p/6124545.html
阅读全文
摘要:ts.sh 输出 参考: https://www.cnblogs.com/chuanzhang053/p/8530191.html
阅读全文
摘要:test.sh 输出 参考: https://blog.csdn.net/sinat_36521655/article/details/79296181
阅读全文
摘要:解决了使用ln -s target linkName创造软链接无法正确取到真实脚本的问题。 参考: https://www.jb51.net/article/59949.htm
阅读全文
摘要:参考:https://blog.csdn.net/lansesl2008/article/details/20558369/
阅读全文
摘要:exit命令用于退出当前shell,在shell脚本中可以终止当前脚本执行。 常用参数格式:exit n退出。设置退出码为n。(Cause the shell to exit with a status of n.) 格式:exit退出。退出码不变,即为最后一个命令的退出码。(If n is omi
阅读全文
摘要:参考: https://www.runoob.com/linux/linux-shell-variable.html
阅读全文
摘要:参考: https://www.cnblogs.com/37yan/p/6962563.html
阅读全文
摘要:在shell脚本中“:”是空命令,表示什么都不做类似于python中的pass
阅读全文
摘要:netstat -lnp|grep 80|grep -v grep |awk '{print $1}'|xargs kill -9
阅读全文
摘要:参考: https://www.cnblogs.com/vaelailai/p/7545166.html
阅读全文
摘要:这条命令的意思是列出系统里面监听网络连接的端口号和相应的进程PID。参数说明:-t:表示列出TCP连接(也可以加上-u参数表示同时列出UDP网络连接)-l:表示列出正在网络监听的服务关键是下面两个参数:-n:表示以端口号来显示-p:表示列出进程PID 参考: https://zhidao.baidu
阅读全文
摘要:chown 用户名 文件名 -R
阅读全文
摘要:sudo chmod 777 file
阅读全文
摘要:参考: https://www.jb51.net/article/146892.htm
阅读全文
摘要:参考: https://www.cnblogs.com/zwgblog/p/6006102.html
阅读全文