I have a script named test.sh and the contents are as follows: $ cat test.sh echo hi rm -f test.sh echo hi ######## What will be the output of the following comand: $ sh test.sh
the first 'hi' will be displayed but it will say "Could not delete file: in use" and will exit the script
the first 'hi' will be displayed but it will say "Could not delete file: in use" and will then echo the second 'hi'
The script will display 2 'hi' and the file will also be deleted
The first 'hi' will be displayed, the script will be deleted , but the 2nd 'hi' will not be displayed.