![]() |
|
|
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 |
| How to make a script (Bash, KornShell, etc.) executable by mouse clicking? | dariyoosh | Shell Programming and Scripting | 2 | 03-09-2009 01:44 PM |
| help with Kornshell function | ckrieger1 | Shell Programming and Scripting | 1 | 04-12-2004 11:43 AM |
| Need Help with KornShell script | ckrieger1 | Shell Programming and Scripting | 1 | 02-13-2004 10:34 AM |
| mailx in kornshell script passing return code to CA-Unicenter | Connie | UNIX for Advanced & Expert Users | 1 | 04-23-2002 09:45 AM |
| Kornshell 93 | Ask Me | UNIX for Dummies Questions & Answers | 1 | 07-12-2001 05:56 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Help with Kornshell Script
Hi,
I'm a novice at programming and need some help with a kornshell script I've been writting. I have an inputdirectory with all my .shp files. In my input directory the shapefiles are named XXXX_original.shp, XXXX_UPDATE.shp ect. In my .ksh script I have created a for loop which loops through all the files in the inputdirectory preforming a translation. Here is my code for my for loop. for file in $InputDirectory/*.shp do *runs translation done This works fine, but I want to add a condition to my for loop. I only want my for loop to run when I have files which can be translated against each other. For example, in my input directory I only want my loop to run when I have files XXXX_original.shp and XXXX_Update.shp ect. in the input directory. I DO NOT want my for loop to run when I'm missing files. For example, in my input directory I DO NOT want my loop to run when I have XXXX_original.shp and no corresponding XXXX_Update.shp. Or XXXX_Update.shp and NO XXXX_original.shp. Instead I could have a message box pop up with a message to the user. Any help would be greatly appreciated. Thanks, Bryan |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|