echo 1 2 3 4 5|{
read line;
for i in $line;
do
echo -n "$((i * i)) ";
done;
echo
}
Das {} erstellt eine Gruppierung. Sie könnten stattdessen ein Skript dafür erstellen.
Ich würde schreiben:
echo "1 2 3 4 5" | {
for N in $(cat); do
echo $((N ** 2))
done | xargs
}
Wir können es uns als „Karte“ (funktionale Programmierung) vorstellen. Es gibt viele Möglichkeiten, eine "map"-Funktion in Bash zu schreiben (mit stdin, function args, ...), zum Beispiel:
map_stdin() {
local FUNCTION=$1
while read LINE; do
$FUNCTION $LINE
done
}
square() { echo "$(($1 * $1))"; }
$ echo "1 2 3 4 5" | xargs -n1 | map_stdin square | xargs
1 4 9 16 25