Terminal Exercises
Help 17 / 25
Loops

Saving to a file in a loop - part 2

Also in the exercise-data/alkanes directory, what would be the output of the following loop?

for datafile in *.pdb
do
    cat $datafile >> all.pdb
done
Loading...