The place I work has commands that take a long time to execute.
Is there a command/utility that I can use to notify me when the command execution is over? It could be a popup window or maybe a little sound.
|
The place I work has commands that take a long time to execute. Is there a command/utility that I can use to notify me when the command execution is over? It could be a popup window or maybe a little sound.
| ||||
|
feedback
|
|
Generally, if you know this before running the command, you can just start it with:
This will execute the If you care about a successful or failure exit, respectively use:
Now … what you want to do after this depends on your environment.
| |||||||
feedback
|
|
If you use csh or tcsh as your interactive shell, you can use the
You can achieve a similar effect in bash with This probably doesn't meet your requirements, since all it does is print a message; I dont' think it can be configured to pop up a window or ring the bell. | |||
feedback
|