Linux 重定向和追加(>、 >>指令)
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
介绍:
>
输出重定向:会将原来的文件内容覆盖
>>
追加:不会覆盖原来文件的内容,而是追加到文件的尾部
基本语法
ls -l > 文件
:列表的内容写入文件a.txt(覆盖写)- 示例:
ls -l > a.txt
- 说明:
ls -l > a.txt
,将ls -l
的显示内容覆盖写入到a.txt文件,如果文件不存在 ,就创建该文件。
- 示例:
ls -al >> 文件
:列表的内容追加到文件aa.txt的末尾cat 文件1 > 文件2
:将文件1的内容覆盖到文件2echo "内容" >> 文件
:将内容 追加到文件中
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献17条内容
所有评论(0)