This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

bash shell question


Hi all,

	I am trying to write a script that will take a list of executables and make links to them in a directory.  I'm doing this to keep my bash PATH var. small while enabling me to call most of my programs from the shell.  Anyways, I'm running into problems when the filename include a path with a space in it, such as "Program Files".  I tried putting quotes around the path but the script still screws up the statement.  One way around this is to use the 8 character length names.  Is there a way to force find and ls to output the small filenames? Or is there another way to get the script working?

Thanks,

Michael Zawacki

EXAMPLE FILE:


/lotus/smartctr/smartctr.exe
/lotus/smartctr/suitest.exe
/lotus/wordpro/wordpro.exe
/"Program Files"/cygnus/H-i386-cygwin32/bin/ar.exe
/"Program Files"/cygnus/H-i386-cygwin32/bin/as.exe

SCRIPT:


#!/usr/bin/bash.exe

exec 0<./execs.txt

while read filename
do
 echo $filename
 ln -s $filename
 
done
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]