Level 5
Not a bot π€
Last updated
Not a bot π€
Last updated
for i in {0..9}; do echo "File ./-file0$i: $(strings './-file0'$i)"; done
# Breaking the oneliner down
for i in {0..9};do # for loop where i iterates over 0,1,2..9
echo "File ./-file0$i: $(strings './-file0'$i)";
# echo formats output, strings prints readable items in file
done # end the for loop