简体   繁体   中英

Timeouting a while loop in Linux shell script

This works fine (infinite loop):

$ while TRUE; do printf ".";done

.............................................................................

I am trying to timeout this while loop with the timeout command. All these don't work:

$ timeout 5 while TRUE; do printf ".";done
$ timeout 5 "while TRUE; do printf ".";done"
$ timeout 5 "while TRUE; do printf \".\";done"
$ timeout 5 $(while TRUE; do printf ".";done)
$ timeout 5 $('while TRUE; do printf ".";done')

What is the correct way (if it exists)?

I think that the solution to your problem is to execute another shell instance and pass proper commands to it. According to bash manual:

-c        If the -c option is present, then commands are read from the first non-option argument command_string.

Thus my solution would be something like that:

timeout 5 bash -c -- 'while true; do printf ".";done'

-- assures that the following arguments will be treated as non-option. And '' helps with passing " without unnecessary escaping

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM