4 lines
158 B
Awk
4 lines
158 B
Awk
BEGIN { print "I found the following conf files:\n" }
|
|
/^.*\.conf$/ { print $9 } # Changed < to ^ (what does < mean in this context?)
|
|
END { print "\nDone." }
|