网站策划文案,win7创建wordpress,上海自适应网站,广东省建设网官网Linux之重定向输出符号与
使用重定向运算符“和”将终端输出保存到文件中
【1】 :他将输出重定向到文件并覆盖文件的现有内容
命令格式
$ command [filename]例子
$ honstnamectl myfile.txt --将honstnamectl(查…Linux之重定向输出符号与
使用重定向运算符“和”将终端输出保存到文件中
【1】 :他将输出重定向到文件并覆盖文件的现有内容
命令格式
$ command [filename]例子
$ honstnamectl myfile.txt --将honstnamectl(查看主机命令)的命令输出保存到myfile.txt中
$ ll ll.txt --将ll的命令输出保存到ll.txt中【2】 :他将输出附加到文件的末尾
命令格式
$ command [filename]例子
cat ll.txt myfile.txt --ll.txt中的内容追加到myfile.txt说明 “” 覆盖写入“” 追加写入 重定向输出的内容写入文件如果文件不存在则创建一个文件然后写入。
[rootlocalhost opt]# hostnamectl myfile.txt --主机信息追加写入myfile.txt
[rootlocalhost opt]# ll myfile.txt --/opt下内容展示追加写入到myfile.txt
[rootlocalhost opt]# cat myfile.txt Static hostname: localhost.localdomainIcon name: computer-vmChassis: vmMachine ID: aee5bc9714d54e8d8a6bac7a5f2e1e0cBoot ID: b29c0c3e22e14d61a2028cc670823a7aVirtualization: vmwareOperating System: CentOS Linux 7 (Core)CPE OS Name: cpe:/o:centos:centos:7Kernel: Linux 3.10.0-957.el7.x86_64Architecture: x86-64
总用量 25912
-rw-r--r--. 1 root root 133 6月 4 05:43 01.txt
-rw-r--r--. 1 root root 5157791 6月 10 01:16 03 Linux CentOS7安装.pdf
-rw-r--r--. 1 root root 1425198 6月 10 01:16 06 日记周记本地仓库.rar
-rw-r--r--. 1 root root 2490 6月 10 01:10 aaa.txt
-rw-r--r--. 1 root root 109953 6月 10 01:10 bbb.pdf
-rw-r--r--. 1 root root 18488204 6月 10 01:15 bird.txt
-rw-r--r--. 1 root root 0 6月 10 01:10 ccc.txt
-rw-r--r--. 1 root root 390 6月 12 01:47 myfile.txt
-rw-r--r--. 1 root root 2796 6月 12 00:33 spring-redis.xml
-rw-r--r--. 1 root root 5281 6月 2 02:48 the-match-girl.txt
-rw-r--r--. 1 root root 1297438 6月 10 01:16 V98说明书.pdf
-rw-r--r--. 1 root root 22844 6月 1 05:32 道德经.txt
[rootlocalhost opt]#