You are on page 1of 1

2. #!/bin/bash echo Enter file names\n while true do read line if test $line = .

then break fi if test $line = then continue fi for file in $line do if test ! s $file then echo no file $file else cat $file fi done done

You might also like