赞
踩
在临时目录下创建一个文件,文件名为a.txt;
将a.txt复制成b.txt;将b.txt改名成为c.txt;
[root@localhost ~]# mkdir -p /opt/tmp
[root@localhost ~]# cd /tmp
[root@localhost tmp]# touch a.txt
[root@localhost tmp]# cp a.txt b.txt
[root@localhost tmp]# mv b.txt c.txt
但是要使这两个文件中的信息是以数值由大到小的形式显示;
[root@localhost ~]# cut -d: -f3 /etc/passwd|tee UID
[root@localhost ~]# sort -nr UID
[root@localhost ~]# cut -d: -f3 /etc/passwd|tee UID
[root@localhost ~]# sort -nr GUI
入A文件。或者在屏幕上输出“the day is (星期几)”
[root@localhost ~]# date "+%Y-%m-%d %H:%M"|tee A
2021-09-26 13:08
[root@localhost ~]# echo the day is `date +%A` |tee -a A
the day is Sunday
[root@localhost ~]# cat A
2021-09-26 13:08
[root@localhost ~]# echo 系统当前有$(wc -l /etc/passwd | cut -d" " -f 1)个用户
[root@localhost ~]# grep -v ^# /etc/login.defs |grep -v ^$ >> file
1> 在当前目录及子目录中,查找大写字母开头的txt文件
[root@localhost ~]# find / -name "[A-Z].txt" -print
2> 在/etc及其子目录中,查找host开头的文件
[root@localhost ~]# find /etc -name "host*" -print
3> 在$HOME目录及其子目录中,查找所有文件
[root@localhost ~]# find /home
4> 忽略文件名大小写查找a.txt
[root@localhost ~]# find / -iname "[a].txt" -print
/opt/a.txt
/tmp/a.txt
/a.txt
5> 在当前目录及子目录下,查找符号链接文件
[root@localhost ~]# find . -type l -print
6> 查找2天内被更改过的文件
[root@localhost ~]# find /var -mtime -2
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。