美文网首页
Shell脚本操作文件

Shell脚本操作文件

作者: 游戏创作者 | 来源:发表于2022-03-23 11:50 被阅读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为要删除的文件路径
    

    相关文章

      网友评论

          本文标题:Shell脚本操作文件

          本文链接:https://www.haomeiwen.com/subject/woecjrtx.html