码迷,mamicode.com
首页 > 系统相关 > 详细

Linux命令练习.ziw

时间:2018-08-23 02:05:39      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:屏幕   a*   href   data-   style   space   数字   有用   inux   

2017年1月10日, 星期二

Linux命令练习

1、统计/usr/bin/目录下的文件个数;
# ls /usr/bin | wc -l

判断 /home/goldin目录是否有文件
2、取出当前系统上所有用户的shell,要求,每种shell只显示一次,并且按顺序进行显示;
# cut -d: -f7 /etc/passwd | sort -u
4、取出/etc/inittab文件的第6行;
# head -6 /etc/inittab | tail -1
5、取出/etc/passwd文件中倒数第9个用户的用户名和shell,显示到屏幕上并将其保存至/tmp/users文件中;
# tail -9 /etc/passwd | head -1 | cut -d: -f1,7 | tee /tmp/users
6、显示/etc目录下所有以pa开头的文件,并统计其个数;
# ls -d /etc/pa* | wc -l

sed练习:
1、删除/etc/grub.conf文件中行首的空白符;
sed -r ‘s@^[[:space:]]+@@g‘ /etc/grub.conf
2、替换/etc/inittab文件中"id:3:initdefault:"一行中的数字为5;
sed ‘s@\(id:\)[0-9]\(:initdefault:\)@\15\2@g‘ /etc/inittab
3、删除/etc/inittab文件中的空白行;
sed ‘/^$/d‘ /etc/inittab





Linux命令练习.ziw

标签:屏幕   a*   href   data-   style   space   数字   有用   inux   

原文地址:https://www.cnblogs.com/jxhd1/p/9521127.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!