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

Linux文件、用户权限及文本处理训练

时间:2018-06-04 00:12:07      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:Linux基础

技术分享图片

注:通过练习发现在使用grep时,使用-e选项(即扩展正则表达式),可以避免添加更多的转义字符

1

cp -r /etc/skel /home/tuser1 && chmod -R 000 /home/tuser1

技术分享图片

技术分享图片

2

vi /etc/group

技术分享图片

3

Vi /etc/passwd

技术分享图片

4

cp -r /etc/skel /home/hadoop && chmod 700 /home/hadoop

技术分享图片

5

chown -R hadoop:hadoop /home/hadoop/

技术分享图片

6

cat /proc//meminfo | grep  "^[s,S]"

cat /proc//meminfo | grep -e "^[s|S]"

技术分享图片

技术分享图片

7

cat /etc/passwd | grep -v "/sbin/nologin\>" | cut -d: -f1

技术分享图片

8

cat /etc/passwd | grep "/bin/bash\>" | cut -d: -f1

技术分享图片

9

cat /etc/passwd | grep -E -o "[0-9]{1,2}"

技术分享图片

10

cat /boot/grub/grub.conf | grep "^[[:space:]]"

cat /boot/grub/grub.conf | grep "^[[:space:]]\+"

技术分享图片

11

cat /etc/rc.d/rc.sysinit | grep "^#[[:space:]]\+[^[:space:]]\+"

cat /etc/rc.d/rc.sysinit | grep -E "^#[[:space:]]+[^[:space:]]+"

技术分享图片

12

netstat -tan | grep -E "LISTEN[[:space:]]*$

技术分享图片

13

useradd bash && useradd testbash && useradd basher && useradd -s /sbin/nologin nologin |grep -E "^([[:alnum:]]+\>).*\1$" /etc/passwd

技术分享图片

技术分享图片

Linux文件、用户权限及文本处理训练

标签:Linux基础

原文地址:http://blog.51cto.com/13745888/2124328

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