设为首页收藏本站language→→ 语言切换

鸿鹄论坛

 找回密码
 论坛注册

QQ登录

先注册再绑定QQ

查看: 2218|回复: 0
收起左侧

Linux中11个比较实用的命令行

[复制链接]
发表于 2022-4-23 03:55:56 | 显示全部楼层 |阅读模式
阅读本文了解组合简单命令以创建更强大命令的可能性。
1.同时创建不同名称的文件夹

shell 的{} 运算符非常适合此操作。下面是用{} 创建三个子目录的示例:

[root@localhost ~]# mkdir -p /tmp/users/{dir1,another,third}2. 就地编辑文件

在不使用编辑器的情况下替换一个或多个文件上的字符串,可以使用sed 来操作:

[root@localhost ~]# sed -i 's/SELINUX=disabled/SELINUX=enforcing/g' /etc/selinux/config 3. 使用web服务器快速共享文件

下面可以使用python的http.server搭建一个简易的web网站,来显示当前目录的文件,以方便下载:

[root@localhost ~]# cd /root && python3 -m http.server 8080Serving HTTP on 0.0.0.0 port 8080 (http://0.0.0.0:8080/) ...


                               
登录/注册后可看大图


                               
登录/注册后可看大图

4. 使用 journalctl 查询错误日志

可以使用 journalctl 以及 sort 和 uniq 的组合来查找最近的错误:

[root@localhost ~]# journalctl --no-pager  --grep 'fail|error|fatal' --output json| jq '._EXE'| sort| uniq -c | sort --numeric --reverse --key 1     45 null     14 "/usr/bin/cat"      6 "/usr/lib/systemd/systemd"      6 "/usr/libexec/platform-python3.6"      6 "/usr/bin/bash"      5 "/usr/sbin/useradd"      3 "/usr/sbin/rngd"      2 "/usr/sbin/groupadd"      1 "/usr/sbin/rsyslogd"5.命令行中向文件写入内容

当需要编写多行文档时,然后使用自定义的字符EOL来结束写入,这是一个很好的技巧:

www.chinaz.com/news/2017/0925/807648.shtml

site.qudong.com/2016/0909/360569.shtml

www.kejixun.com/article/170515/325313.shtml

[root@localhost ~]# cat << EOL >> /root/documents.txt> line 1> line 2> a b c d ef> EOL


                               
登录/注册后可看大图

6. 不使用 top 监控内存

使用watch命令每5秒重复一次free命令,来监测内存:

[root@localhost ~]# watch -n 5 -d free -h7.显示磁盘分区大小

使用 lsbk 和 jq 来显示分区信息:

[root@localhost ~]# lsblk --json | jq -c '.blockdevices[] | [.name,.size]'["sda","20G"]["sdb","20G"]["sdc","20G"]["sdd","20G"]["sr0","1024M"]["nvme0n1","20G"]


                               
登录/注册后可看大图

8.快速显示文件的类型

下面创建一个函数,调用stat命令来显示文件名和输入的文件类型:

[root@localhost ~]# function wi { test -n "$1" && stat --printf "%F\n" "$1"; }或者可以检查多个文件的类型:[root@localhost ~]# function wi { test "$#" -gt 0 && stat --printf "%n: %F\n" "$@"; }


                               
登录/注册后可看大图

9.显示已安装 RPM 包的大小

可以使用rpm包管理器的--queryformat选项来查看包的大小:

[root@localhost ~]# rpm --queryformat='%12{SIZE} %{NAME}\n' -q adobe-mappings-cmap-20171205-3.el8.noarch    13746679 adobe-mappings-cmap


                               
登录/注册后可看大图

10.查看天气

使用此功能可以查看天气:

[root@localhost ~]# weather() { curl -s --connect-timeout 3 -m 5 http://wttr.in/$1; }

不添加参数,输出的是当前地理位置的天气,输入城市名称可以查看当地天气


                               
登录/注册后可看大图

11.显示访问web服务器的前 10 个 IP 地址

下面是从access.log文件中获取前十个访问web服务器的ip地址:

[root@localhost httpd]# cat /var/log/nginx/access.log | cut -f 1 -d ' ' | sort | uniq -c | sort -hr | head -n 10总结

阅读本文了解组合简单命令以创建更强大命令的可能性。


评分

参与人数 1好评度 +1 收起 理由
liugangpaul + 1 很给力!

查看全部评分

您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-1-23 13:36 , Processed in 0.049846 second(s), 11 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表