![]() |
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 |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| using foreach loop | sam4now | Shell Programming and Scripting | 6 | 04-26-2008 12:22 PM |
| Foreach loop | haze21 | Shell Programming and Scripting | 4 | 11-16-2007 03:11 AM |
| foreach folder | eltinator | Shell Programming and Scripting | 7 | 08-13-2007 03:37 AM |
| foreach/grep help! | JimWork | Shell Programming and Scripting | 6 | 07-27-2007 05:25 PM |
| foreach command ?! | geoquest | UNIX for Dummies Questions & Answers | 5 | 05-20-2002 06:11 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
foreach statement in ksh
Hi,
My script should run through all subdirs recursively in SUBDIR_LIST, run a clearcase command in each subdir, print to the merge_results1.txt and add a new line to the results before going to the next subdir. All the results should append to merge_results1.txt, but are seperated by a line so it's easier to read. Can someone help me with the foreach statement? #! /usr/bin/ksh /usr/atria/bin/cleartool startview a442592_merge_diff_2.0to2.5 cd /view/a442592_merge_diff_2.0to2.5/vobs_jil SUBDIR_LIST=`ls -d fmr*/` #for all the subdirs run a print merge command and add a new line to #merge_results1.txt for each ${SUBDIR_LIST} /usr/atria/bin/cleartool findmerge . -fver .../strutsplus-2.0_bos/LATEST -print > /home/a442592/merge_results1.txt #loop ends here cat /home/a442592/merge_results1.txt | sed 's/Needs Merge//g' | sed 's/"//g' |cut -d[ -f1 > /home/a442592/merge_results2.txt cat ~/merge_results2.txt | mailx -r <form e-mail>-s 'Sync merge between 2.0 and 2.5' <to e-mail> Thanks |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|