doppelte Leerzeichen entfernt

This commit is contained in:
Michael Grote 2021-09-17 08:41:53 +02:00
parent 2ed76f8edb
commit a74d10d248

View file

@ -19,8 +19,8 @@ if [ "$1" = "config" ]; then
# https://superuser.com/questions/284187/bash-iterating-over-lines-in-a-variable # https://superuser.com/questions/284187/bash-iterating-over-lines-in-a-variable
while read -r line; do while read -r line; do
# setze label <pool>.label <pool> snapshots # setze label <pool>.label <pool> snapshots
echo $line | awk '{print $1"_snapshot.label " $1 " snapshots"}' echo $line | awk '{print $1"_snapshot.label" $1 " snapshots"}'
echo $line | awk '{print $1"_dataset.label " $1 " datasets"}' echo $line | awk '{print $1"_dataset.label" $1 " datasets"}'
done <<< "$list_pools" done <<< "$list_pools"
echo 'pools.label pools' echo 'pools.label pools'
# setze optionen # setze optionen