“Foreach Bash” Ответ

Foreach Bash

for n in $(cat lists.txt )
do
    echo "Working on $n file name now"
    # do something on $n below, say count line numbers
    # wc -l "$n"
done

#################

input="lists.txt"
 
## Let us read a file line-by-line using while loop ##
while IFS= read -r line
do
  printf 'Working on %s file...\n' "$line"
done < "$input"
Hutch Polecat

Bash Loop Foreach Найти

find . -name "*.txt" -print0 | while read -d $'\0' file
do
    …code using "$file"
done
Tame Tortoise

Ответы похожие на “Foreach Bash”

Вопросы похожие на “Foreach Bash”

Больше похожих ответов на “Foreach Bash” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования