Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 6 down vote accepted

sudo wants a program (+arguments) as a parameter, not a piece of shell script. You can do this, though:

sudo -i -u user sh -c 'for i in /dir; do echo $i; done'

Note the single quotes. If you used double quotes, your shell would try to expand the $i before sudo (or, rather, the shell run by it) ever sees it.

share|improve this answer
you got it! Good luck to all. – shellter Jun 4 '12 at 22:13
That did the trick, thanks! – Axl Jun 4 '12 at 22:13

Put the sudo inside the loop:

for i in /dir; do
    sudo -u user somecommand $i
done

This won't work without extra steps if you need the other user's permissions to generate the glob for the loop, for example.

share|improve this answer

You can try sudo bash -c 'commands here'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.