tail a.txt > a.txt 会怎么样
时间: 2024-05-23 07:13:04 浏览: 87
执行命令 `tail a.txt > a.txt` 后,会将文件 a.txt 的末尾内容输出到标准输出,并将标准输出的内容覆盖写入文件 a.txt 中,也就是说,a.txt 文件被截断为空文件。这是因为在执行命令时,shell 会先打开文件 a.txt,然后将标准输出重定向到文件 a.txt,再执行 tail 命令,而 tail 命令是从文件 a.txt 的末尾开始读取内容,因此当标准输出被重定向到 a.txt 后,a.txt 中原有的内容就被清空了,然后 tail 命令再从空文件中读取内容,因此不会输出任何内容。
相关问题
popen("tail -F a.txt", "r");
This line of code uses the popen() function to open a file stream to the output of the "tail -F a.txt" command. The "r" flag indicates that the file stream should be opened in read mode.
The "tail" command is used to display the last few lines of a file, and the "-F" flag tells it to continue displaying new lines that are added to the file in real-time.
Overall, this line of code will open a file stream that reads the output of the "tail -F a.txt" command, allowing the program to monitor changes to the "a.txt" file in real-time.
写出下列命令所完成的操作: 1.chmod ug+w.o-w filel.txt file2.txt 2.find/home -user fe2000 -atime +7 -exec rm -f {} \; 3.chmod 000 bak/* (3)写出完成下列功能所需要的命令: ①显示目录/tmp目录下最后三个文件的ls长格式信息。 ②显示变量名为PATH的值(PATH记录了系统命令对应程序所在的位置)。 ③找出文件/etc/passwd中包含root 的所有行,并将这些行累加存储到文件/home/yyl/rootpass中。 ④找出文件系统中所有名字为myfile的文件,并输出这些文件路径到/root/test 文件中,此命令后台操作。 ⑤后台启动gedit,然后通过控制台将其强行关闭(需要两条命令)。 ⑥查看当前系统中所有的线程,并以树状显示。 7.配置IP地址信息:IP为192.168.2.3:掩码为255.255.255.0;网关为192.168.2.254 8.添加一条静态ARP信息:IP地址:192.168.3.4:MAC 地址:12-34-56-78-9A-BC) 9.显示2015年7月~9月的月历。 (4)写出下列命令所完成的操作: 1.export HELLO=“hello world” 2.wc-w/home/yyl/MyPeom.txt>MyPeomCnt.txt 3.pS -a -e -S 4.arp -d 192.168.0.2
1. 给文件file1.txt和file2.txt增加了用户和用户组的写权限,同时取消了其他用户对这两个文件的写权限。
2. 查找/home目录下最后一次访问时间超过7天,并且所有者为fe2000的文件,并将其删除。
3. 将bak目录下的所有文件权限设置为000。
4.
①ls -lrt /tmp | tail -n 3
②echo $PATH
③grep "root" /etc/passwd >> /home/yyl/rootpass
④find / -name "myfile" > /root/test &
⑤gedit &
killall gedit
⑥pstree
7. ifconfig eth0 192.168.2.3 netmask 255.255.255.0
route add default gw 192.168.2.254
8. arp -s 192.168.3.4 12:34:56:78:9A:BC
9. cal 7 2015
cal 8 2015
cal 9 2015
1. 将环境变量HELLO的值设置为“hello world”。
2. 统计文件MyPeom.txt中的字符数、单词数、行数,并将结果输出到文件MyPeomCnt.txt中。
3. 显示所有进程的信息,包括进程的PID、状态、命令等。
4. 删除ARP缓存中IP地址为192.168.0.2的项。
阅读全文