Given the following script:
while [ ! –f /tmp/foo ]; do echo –n “.” process_data > /tmp/foo doneWhich of the following are true? (choose two)
- If a file called /tmp/foo exists, process_data won’t be run
- The screen will fill with dots.
- /tmp/foo will be removed if it exists
- process_data will never be run
- process_data will be called at most once
Please login or Register to submit your answer