Use find with the –exec (Sobell, page 829) criterion to run an ls –l command on the files returned by the find statement in the previous step.

What will be an ideal response?

$ find /bin -name "*sh*" -type l -exec ls -l {} \;
lrwxrwxrwx. 1 root root 4 Jun 11 21:19 /bin/sh -> bash
lrwxrwxrwx. 1 root root 4 Feb 22 2012 /bin/csh -> tcsh

Computer Science & Information Technology

You might also like to view...

A ________ is a computer system that provides information to people in nontraditional places such as museums, grocery stores, or banks

A) tablet B) laptop C) podium D) kiosk

Computer Science & Information Technology

Write the statement to declare a seven-element procedure-level array namedstrItemCodewith each element initialized to the keywordNothing.

What will be an ideal response?

Computer Science & Information Technology