操作文件 創建文件 [root@localhost ~]# touch a.txt # 創建單個文件 [root@localhost ~]# touch b.txt c.txt # 創建多個文件 刪除文件 [root@localhost ~]# rm a.txt # 刪除單個文件 [root@loc ...
操作文件
創建文件
[root@localhost ~]# touch a.txt # 創建單個文件 [root@localhost ~]# touch b.txt c.txt # 創建多個文件
刪除文件
[root@localhost ~]# rm a.txt # 刪除單個文件 [root@localhost ~]# rm b.txt c.txt # 刪除多個文件 # rm -i 文件名:刪除前給提示。 rm -f 文件名:直接刪除文件,不給提示。 預設刪除前給提示。