Linux(三)
作者:互联网
**
Linux基础命令
**
[root@localhost xixi]# cat passwd 查看passwd(小文件)
[root@localhost xixi]# more passwd 查看passwd
[root@localhost xixi]# less passwd 查看大文件
[root@localhost xixi]# head passwd 查看前十行
[root@localhost xixi]# tail passwd 查看倒数十行
[root@localhost xixi]# head -3 passwd 查看前三行
[root@localhost xixi]# tail -3 passwd 倒数三行
[root@localhost xixi]# cat -n passwd 查看有多少行
[root@localhost xixi]# head -11 passwd | tail -7 管道符,5-11行
[root@localhost xixi]# head -11 passwd | tail -6 | tail -3 | head -1
前11行的后6行的后3行的第一行
[root@localhost xixi]# head -11 passwd | tail -6 | tail -3 | head -1 | cut -d : -f 1
前11行的后6行的后3行的第一行 以:分割 的第一个单词
[root@localhost xixi]# head -11 passwd | tail -6 | tail -3 | head -1 | cut -d : -f 6
前11行的后6行的后3行的第一行 以:分割 的第六个单词
[root@localhost xixi]# head -11 passwd | tail -6 | tail -3 | head -1 | cut -d : -f 6 | cut -d / -f 2
前11行的后6行的后3行的第一行 以:分割 的第六个单词 再以/分割的第二个单词
[root@localhost xixi]# echo 现在时间是 date
[root@localhost xixi]# echo 现在时间是 date | cut -d : -f 1 | cut -d " " -f 4
点
[root@localhost xixi]#cat hehe
[root@localhost xixi]#sort hehe 排序
[root@localhost xixi]#sort -u hehe 把重复的去掉
[root@localhost xixi]#wc hehe
[root@localhost xixi]#history 命令历史管理器
[root@localhost xixi]#echo "The current directory is KaTeX parse error: Expected 'EOF', got '#' at position 30: …localhost xixi]#̲echo 'The curre…(date +%H-%M-%S).txt
[root@localhost xixi]#chgrp redhat hehe 改变组属性
[root@localhost xixi]#chown redhat hehe改变主属性
[root@localhost xixi]#chmod a-x 拿掉所有人的x权限
[root@localhost xixi]#chmod u-x 拿掉该用户的x权限
标签:head,passwd,xixi,tail,Linux,root,localhost 来源: https://blog.csdn.net/weixin_43294413/article/details/97941108