美文网首页问题
shell 写文件写入内容

shell 写文件写入内容

作者: musk | 来源:发表于2022-07-22 17:08 被阅读0次

    方法一:

    sudo tee>/root/test.txt <<-'EOF'
    写入内容
    EOF
    

    方法二:

    sudo cat>/root/test.txt <<END
    写入内容
    END
    
    
    

    相关文章

      网友评论

        本文标题:shell 写文件写入内容

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