LINUX COMMAND HELP What is the command i run to find the fol
LINUX COMMAND HELP. What is the command i run to find the following in terminal?
Displays the absolute pathnames to any device files which start with the letters sd
Solution
Answer: You can execute a command to list device files as below
ls -pd1 /dev/sd*
An alertnater way to find any file may be:
find $PWD -type f -name \"sd*\"
Hope this helps you.
