This is the mail archive of the cygwin 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]
Other format: [Raw text]

bash script bugs


Have a script:
#!/usr/bin/bash
f="$(ls $1)"
for v_file in "$f"; do
  echo $v_file
done
named FileGroupContentsChange.sh.

Twos things do not work as they should. By order:
1) Output in command line for nest commands
  ls /cygdrive/d/install/buf/*.html
  dir /cygdrive/d/install/buf/*.html
is same:
/cygdrive/d/install/buf/a.html
/cygdrive/d/install/buf/b.html

while output for ./FileGroupContentsChange.sh
/cygdrive/d/install/buf/*.html is only
/cygdrive/d/install/buf/a.html


2) (not critical but not "classical") Both command line script and
outputs for current folder in one line:
ls returns
FileGroupContentsChange.sh  cygcheck.out  sources
and so ./FileGroupContentsChange.sh do

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


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