“Foreach Bash” Kode Jawaban

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 temukan

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

Jawaban yang mirip dengan “Foreach Bash”

Pertanyaan yang mirip dengan “Foreach Bash”

Lebih banyak jawaban terkait untuk “Foreach Bash” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya