一、檔案重新命名:mv
例:將檔案test.txt重新命名為helloworld.txt
$ mv test.txt helloworld.txt
二、新建資料夾及檔案
進入home的資料夾
1.在home資料夾下建立乙個helloworld資料夾
cd /home 進入home資料夾
mkdir helloworld
2.在helloworld資料夾中建立乙個test.txt檔案
touch helloworld/test.txt
3.刪除helloworld 資料夾下test.txt檔案
rm -f helloworld/test.txt
4.刪除helloworld 資料夾
rm -rf helloworld/ 不提示
5.刪除filedir 資料夾提示
rm -ir filedir 刪除資料夾提示
三、修改檔案讀寫格式
chmod 744 siconfig.xml
linux下檔案複製 重新命名
1 linux下的檔案複製 示例 cp make imagenet mean.sh home yanghuiyu make cmake caffe examples myexample 2 重新命名 格式 mv 原始檔 目標檔案 示例 將檔案test.txt重新命名為wbk.txt mv test....
Linux下檔案重新命名 建立 刪除 修改及儲存檔案
linux 給檔案改名的命令是mv命令 mv命令來為檔案或目錄改名或將檔案由乙個目錄移入另乙個目錄中。該命令等同於dos系統下的ren和move命令的組合。它的使用許可權是所有使用者。格式mv options 原始檔或目錄 目標檔案或目錄。主要引數 options i 互動方式操作。如果mv操作將導...
Linux下檔案重新命名 建立 刪除 修改及儲存檔案
linux 給檔案改名的命令是mv命令 mv命令來為檔案或目錄改名或將檔案由乙個目錄移入另乙個目錄中。該命令等同於dos系統下的ren和move命令的組合。它的使用許可權是所有使用者。格式mv options 原始檔或目錄 目標檔案或目錄。主要引數 options i 互動方式操作。如果mv操作將導...