Question: Breakdown and explain what this commandline does: find under the covers -type f | while read file; do file $file | grep -i -q

Breakdown and explain what this commandline does: find under the covers -type f | while read file; do file $file | grep -i -q ascii && head -1 $file grep ^#!' && echo $file; done
Step by Step Solution
3.43 Rating (156 Votes )
There are 3 Steps involved in it
The provided command line is a bash command that uses the find command to search for files type f un... View full answer
Get step-by-step solutions from verified subject matter experts
