<span style>You can also try it with a simple test:</span><div style><br></div><div style><b><div class="im" style="color:rgb(80,0,80)">for i in C:/Users/tappenbeck/Desktop/<u></u>Project/*<br></div>do [ -d "$i" ] && echo "$i" is directory<br>
done</b><br><br><br>Notice that because it is in a shell script and is broken into separate lines already, the semi-colons ";" have been removed.</div><div style><br></div><div style>You only need semicolons when placing it in one line, like copy and pasting into a terminal instead of running from a script.</div>
<div style><br></div><div style><br></div><div style><br></div><div style><br></div><div style>Take your pick =)</div><div style><br></div><div style><br></div><div style><br></div><div style>Donovan</div><br><div class="gmail_quote">
On Wed, Jun 20, 2012 at 12:51 PM,  <span dir="ltr"><<a href="mailto:pcreso@pcreso.com" target="_blank">pcreso@pcreso.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<table cellspacing="0" cellpadding="0" border="0"><tbody><tr><td valign="top" style="font:inherit">Hi Jan<div class="im"><br><br>for i in C:/Users/tappenbeck/Desktop/Project/*;<br><br></div>change to :<br><br>for l in `ls C:/Users/tappenbeck/Desktop/Project/` ;<br>
<br><br>enclosing a comand in back quotes will return the result of the command, & you want to return a list iof the contents of the folder, not the string which is the folder name.<br><br><br>--- On <b>Thu, 6/21/12, Jan Tappenbeck <i><<a href="mailto:osm@tappenbeck.net" target="_blank">osm@tappenbeck.net</a>></i></b> wrote:<br>
<blockquote style="border-left:2px solid rgb(16,16,255);margin-left:5px;padding-left:5px"><br>From: Jan Tappenbeck <<a href="mailto:osm@tappenbeck.net" target="_blank">osm@tappenbeck.net</a>><br>Subject: [Qgis-user] help to list files by bourne-shell<br>
To: "qgis-mailingliste" <<a href="mailto:qgis-user@lists.osgeo.org" target="_blank">qgis-user@lists.osgeo.org</a>><br>Date: Thursday, June 21, 2012, 2:36 AM<div><div class="h5"><br><br><div>hi !<br><br>i want to create a script for use in msys - but i am not a linux-user. i try to create this
 by a template:<br><br>#!/bin/sh<br># Einfaches Beispiel<br><br>for i in C:/Users/tappenbeck/Desktop/Project/*;<br>do<br>if [ -d "$i" ];<br>then<br>echo $i is directory;<br>fi;<br>done<br><br>but there will no files list - can anyone help me ?<br>
<br>reagards Jan :-)<br><br>_______________________________________________<br>Qgis-user mailing list<br><a href="http://mc/compose?to=Qgis-user@lists.osgeo.org" target="_blank">Qgis-user@lists.osgeo.org</a><br><a href="http://lists.osgeo.org/mailman/listinfo/qgis-user" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
</div></div></div></blockquote></td></tr></tbody></table><br>_______________________________________________<br>
Qgis-user mailing list<br>
<a href="mailto:Qgis-user@lists.osgeo.org">Qgis-user@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/qgis-user" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
<br></blockquote></div><br>