![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| About wait | Puntino | UNIX for Dummies Questions & Answers | 5 | 04-27-2008 04:07 AM |
| wait / sleep what to use??? | gkrishnag | UNIX for Dummies Questions & Answers | 1 | 09-19-2006 05:13 AM |
| Need to execute 2 scripts, wait, execute 2 more wait, till end of file | halo98 | Shell Programming and Scripting | 1 | 08-01-2006 04:42 PM |
| I/O wait Problem | unavb | UNIX for Dummies Questions & Answers | 5 | 02-09-2006 07:45 PM |
| 86% CPU for wait | big123456 | UNIX for Advanced & Expert Users | 3 | 11-04-2005 10:07 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
${!} an alternate syntax for $! which is the PID of the last background command (presumably here, your graph application). The script simply waits for the application to finish.
Generally, ${anything} is just another way to write $anything -- in some situations, the braces are required for disambiguation (${anything}too means something else than $anythingtoo which means ${anythingtoo}) but some people like to put them everywhere just out of habit, or for clarity. |