Forum: Shell Scripting Oct 25th, 2006 |
| Replies: 8 Views: 8,904 I would still suggest using nohup atleast if the user closes the terminal you will still be processing.
You can use nohup as follows so your users can see the output of your script.
nohup... |
Forum: Shell Scripting Aug 18th, 2005 |
| Replies: 8 Views: 8,904 Im not to certain, would depend on your terminal. there might be a way of stopping ppl closing the window in certain terminals. |
Forum: Shell Scripting Aug 8th, 2005 |
| Replies: 1 Views: 5,479 I know what your thinking, You and everyone else has always wanted a clock that sits at the top of your command prompt and tells you the time.
Why ?
I made this in first year when i spent... |
Forum: Shell Scripting Aug 8th, 2005 |
| Replies: 8 Views: 8,904 there is no real way to stop a user from closing a window using a shell script.
but if your worring about your shell script being half way through something when they close the window.
use
... |
Forum: Shell Scripting Feb 11th, 2005 |
| Replies: 3 Views: 15,251 If i understand what your trying to do try atrm
I just attempted this as a small test
atrm now `echo hello >> hello2`
so i guess you should use
atrm now +3 days `/path/scriptname -foo... |
Forum: Shell Scripting Feb 10th, 2005 |
| Replies: 1 Views: 2,067 get a command and run it ?
#!/bin/bash
read command
$command
should work |