I have tried:
sudo "some string" >> test.txt
But am being denied permission.
Can anyone help?
|
|
|
Depends on how much access your administrator has given you via sudo. The simplest answer, assuming that you have permission to do so, is to run "sudo -s" to get a privileged shell and then just do your
as 'normal'. If you need to do it automatedly:
The reason that what you have won't work (other than the fact that you left what I assume to be an "echo" command out) is that the file redirection happens in the context of your shell and the sudo only applies to the command you told it to run. |
||||
|
|||||||||||||||
|
The problem in your original try is that the ">>" is happening in the shell running as you; bash opens the file, not whatever is being run by sudo. In my version, you're passing the whole command including the redirection to a bash run by sudo. |
|||