J'ai une opération utilisant cut
que je voudrais affecter le résultat à une variable
var4=echo ztemp.xml |cut -f1 -d '.'
Je reçois l'erreur:
ztemp.xml n'est pas une commande
La valeur de var4
n'est jamais attribué; J'essaie de lui attribuer la sortie de:
echo ztemp.xml | cut -f1 -d '.'
Comment puis je faire ça?
Vous voudrez modifier votre affectation pour lire:
var4="$(echo ztemp.xml | cut -f1 -d '.')"
La construction $(…)
est connue sous le nom de command susbtitution .
Selon le shell que vous utilisez, vous pouvez utiliser l'extension des paramètres. Par exemple dans bash
:
${parameter%Word}
${parameter%%Word}
Remove matching suffix pattern. The Word is expanded to produce
a pattern just as in pathname expansion. If the pattern matches
a trailing portion of the expanded value of parameter, then the
result of the expansion is the expanded value of parameter with
the shortest matching pattern (the ``%'' case) or the longest
matching pattern (the ``%%'' case) deleted. If parameter is @
or *, the pattern removal operation is applied to each posi‐
tional parameter in turn, and the expansion is the resultant
list. If parameter is an array variable subscripted with @ or
*, the pattern removal operation is applied to each member of
the array in turn, and the expansion is the resultant list.
Dans votre cas, cela signifierait faire quelque chose comme ceci:
var4=ztemp.xml
var4=${var4%.*}
Notez que le caractère #
se comporte de manière similaire sur la partie préfixe de la chaîne.
Ksh, Zsh et Bash offrent tous une autre syntaxe, peut-être plus claire:
var4=$(echo ztemp.xml | cut -f1 -d '.')
Les backticks (alias "Grave accent") sont illisibles dans certaines polices. La syntaxe $(blahblah)
est au moins beaucoup plus évidente.
Notez que vous pouvez diriger des valeurs dans une commande read
dans certains shells:
ls -1 \*.\* | cut -f1 -d'.' | while read VAR4; do echo $VAR4; done
C'est encore une autre façon d'affecter une variable, bonne à utiliser avec certains éditeurs de texte qui ne peuvent pas mettre correctement en surbrillance chaque code complexe que vous créez.
read -r -d '' str < <(cat somefile.txt)
echo "${#str}"
echo "$str"