Linux

grep 命令的基本模式和扩展模式

6月 16, 2020 |

基本模式下”?, +, {, |, (, 和 ) “按普通字符处理,如果要使用正则表达式语言,请使用反斜杠转义 […more]

linux find -mtime 参数的使用

6月 9, 2020 |

-mtime 的计算逻辑为[(当前时间-文件的修改时间)/24] 向下取整,即丢弃小数部分 所以-mtime […more]

bash shell for复合语句

6月 9, 2020 |

for x in $(ls ); do echo “$x”; done; //Command Substitu […more]

awk命令

6月 8, 2020 |

命令结构 awk [option -F “:”] ‘[BEGIN {cmd}] /regex/ {cmd} [ […more]

bash shell的if语句详解

6月 8, 2020 |

if [ -e /etc/passwd ]; then echo “javacoder.cn” fi if x […more]

服务器来不及接受请求导致行为

3月 26, 2019 |

我们知道tcp 会维护syn队列和accept 队列,当一个连接完成三次握手后,将其从syn队列移到accep […more]

linux 日常命令

3月 21, 2019 |

ssh -n user@ip ‘cmd’ rsync -avz -e ssh –include ‘R*’ – […more]

centos7 创建服务自启动脚本

3月 20, 2019 |

touch /etc/systemd/system/name.service chmod 664 /etc/s […more]

nohup的功能

3月 20, 2019 |

当我们通过“ping www.baidu.com&” 方式将命名放入后台执行时,程序的标准输出仍然为我 […more]

centos7 iptables 操作

3月 17, 2019 |

iptables的设置更接近lvs中的描述,决定还是使用iptables systemctl disable […more]