命令结果进行操作

将ls查询出来的信息写到一个文件中

  • 使⽤用⽂文件定位符>

ls > b.txt

  • 查看内容

cat b.txt

  • 把内容追加到⼀个文件中,使用>>

ls >> b.txt

Logo

更多推荐