Re: question : shell (bash) ?

Top Page

Reply to this message
Author: Jerome KIEFFER
Date:  
To: guilde
Subject: Re: question : shell (bash) ?

pourquoi tu mets des cotes droites ET inverses ?

a=`ls`
affecte a $a la sortie stdout de ls.

si tu veux parcourir un fichier et fair un wget dessus :
for i in `cat fichier`; do wget ftp://monserveur/$i ; done

pour les autres cotes regarde l'exemple ci-dessous :
a=toto
echo $a
toto
echo '$a'
$a
echo "$a"
toto

-- 
Jérôme KIEFFER
The programming of today's high speed digital computers is still an art 
rather than a science.                
            Savitsky and Golay, Anal. Chem., 36, p1638 (1964)