I want to run a simple for loop command with sudo, but it isn't working:
sudo -i -u user for i in /dir; do echo $i; done
I get the following error:
-bash: syntax error near unexpected token `do'
Probably a very simple thing I am overlooking. Any help?