Question: Explain what the follwoing shell script does. UNIX #!/bin/bash DIRNAME=/usr/bin FILETYPE=shell script LOGFILE=logfile file $DIRNAME/* | fgrep $FILETYPE | tee $LOGFILE | wc -l exit
Explain what the follwoing shell script does. UNIX
#!/bin/bash DIRNAME=/usr/bin FILETYPE="shell script" LOGFILE=logfile file "$DIRNAME"/* | fgrep "$FILETYPE" | tee $LOGFILE | wc -l exit 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
