• Linux常用命令


    1.xargs结合find使用

    rm 删除太多的文件时候,可能得到一个错误信息:/bin/rm Argument list too long. 用xargs去避免这个问题:

    find . -type f -name "*.log" -print0 | xargs -0 rm -f

    xargs -0将作为定界符。

    统计一个源代码目录中所有php文件的行数:

    find . -type f -name "*.php" -print0 | xargs -0 wc -l

    查找所有的jpg 文件,并且压缩它们:

    find . -type f -name "*.jpg" -print | xargs tar -czvf images.tar.gz
    

    xargs其他应用

    假如你有一个文件包含了很多你希望下载的URL,你能够使用xargs下载所有链接:

    cat url-list.txt | xargs wget -c

    2.
    Centos7,配置防火墙,开启端口

    1.centos7版本对防火墙进行 加强,不再使用原来的iptables,启用firewall

    1.查看已开放的端口(默认不开放任何端口)
    firewall-cmd --list-ports
    2.开启80端口
    firewall-cmd --zone=public(作用域) --add-port=80/tcp(端口和访问类型) --permanent(永久生效)
    3.重启防火墙
    firewall-cmd --reload
    4.停止防火墙
    systemctl stop firewalld.service
    5.禁止防火墙开机启动
    systemctl disable firewalld.service
    6.删除
    firewall-cmd --zone= public --remove-port=80/tcp --permanent

    2.centos7以下版本

    1.开放80,22,8080 端口
    /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
    /sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT
    /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
    2.保存
    /etc/rc.d/init.d/iptables save
    3.查看打开的端口
    /etc/init.d/iptables status
    4.关闭防火墙 
    1) 永久性生效,重启后不会复原
    开启: chkconfig iptables on
    关闭: chkconfig iptables off
    2) 即时生效,重启后复原
    开启: service iptables start
    关闭: service iptables stop
  • 相关阅读:
    弹窗信息
    EditorGridPanel中编辑后失去焦点
    GridPanel在IE6中显示滚动条
    VS2010 在Win 7 附加w3wp.exe进程进行调试
    Visual Studio 中为文件添加链接(快捷方式、引用?)
    windows + visual studio 2010 配置SVN
    【转】[信息视图]谷歌究竟有多强大
    收缩数据库 DBCC SHRINKFILE
    Visual Studio 2010 SDK (Extensibility)
    在Windows7 上建立WiFi热点
  • 原文地址:https://www.cnblogs.com/taomylife/p/9150644.html
Copyright © 2020-2023  润新知