| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sources DOT redhat DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sources DOT redhat DOT com> |
| List-Help: | <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT sources DOT redhat DOT com |
| Delivered-To: | mailing list cygwin AT sources DOT redhat DOT com |
| Message-ID: | <C9A98ED35114D31197D000805FEA668E027B19BB@mucexch.muc.sdm.de> |
| From: | klaus DOT berndl AT sdm DOT de |
| To: | cygwin AT sourceware DOT cygnus DOT com |
| Subject: | Problem with basename |
| Date: | Fri, 16 Feb 2001 15:13:48 +0100 |
| MIME-Version: | 1.0 |
| X-Mailer: | Internet Mail Service (5.5.2650.21) |
| X-MIME-Autoconverted: | from quoted-printable to 8bit by delorie.com id JAA01023 |
i have written the following function:
function check-el-compile ()
{
for file in $*; do
elcfile=`basename $file .el`.elc
if [ ! -f "$elcfile" ]; then
missinglist="$missinglist $file"
fi
done
echo "Not compiled Files: $missinglist"
unset el elc missinglist
}
This function checks which of the passed *.el files are not compiled, i.e. the file <basename>.elc
does not exist. Example: abc.el is compiled if abc.elc exists in the same directory.
Now the problem: if i pass the *.el files as argument to this function all is working fine.
But if i write the functon like follows:
function check-el-compile ()
{
for file in `ls *.el`; do
# same as above.
then the basename call doesn´t work, i.e. it always returns $file.
It seems that the output of ls contains "something" which confuses basename?!
Any ideas what can be the problem?
many thanks in advance!
Klaus
--
Klaus Berndl mailto: klaus DOT berndl AT sdm DOT de
sd&m AG http://www.sdm.de
software design & management
Thomas-Dehler-Str. 27, 81737 München, Germany
Tel +49 89 63812-392, Fax -220
--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |