How to empty (“truncate”) a file on linux that already exists and is protected in someway?

后端 未结 9 500
梦谈多话
梦谈多话 2020-12-12 12:39

I have a file called error.log on my server that I need to frequently truncate. I have rw permissions for the file. Opening the file in vi > deleting all content > saving wo

9条回答
  •  自闭症患者
    2020-12-12 13:26

    Since sudo will not work with redirection >, I like the tee command for this purpose

    echo "" | sudo tee fileName
    

提交回复
热议问题