Shell脚本操作文件
2022-03-23 本文已影响0人
游戏创作者
1. 覆盖写入
echo "hello" < test.txt
2. 追加写入
echo "hello" < test.txt
date << test.txt
3. 文件读取
cat test.txt
4. 重命名文件
//将文件a重命名为文件b
mv a b
5. 删除文件或目录
rm -rf path //path为要删除的文件路径
echo "hello" < test.txt
echo "hello" < test.txt
date << test.txt
cat test.txt
//将文件a重命名为文件b
mv a b
rm -rf path //path为要删除的文件路径