The following command displays the types of /bin/bash, /bin/cat, /bin/awk, and /bin/csh files.

What will be an ideal response?


```
$ file /bin/bash /bin/cat /bin/awk /bin/csh
/bin/bash: ELF 32-bit LSB executable, Intel 80386, version 1, dynamically linked (uses shared libs), stripped
/bin/cat: ELF 32-bit LSB executable, Intel 80386, version 1, dynamically linked (uses shared libs), stripped
/bin/awk: symbolic link to gawk
/bin/csh: symbolic link to tcsh
$
```
Not that /bin/bash and /bin/cat are dynamically linked ELF 32-bit LSB executable files and /bin/awk and /bin/csh are symbolic links to /bin/gawk and /bin/tcsh.

Computer Science & Information Technology

You might also like to view...

What is displayed by the following code?

``` System.out.print("A,B;C".replaceAll(",;", "#") + " "); System.out.println("A,B;C".replaceAll("[,;]", "#")); ``` a. A B C A#B#C b. A#B#C A#B#C c. A,B;C A#B#C d. A B C A B C

Computer Science & Information Technology

A computer virus attack is also called a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Any recommendations, suggestions, or ideas will be displayed in the ________ section of the Performance Analyzer dialog box

Fill in the blank(s) with correct word

Computer Science & Information Technology

Visual Studio 2010 is an example of a set of services and tools called a(n) ____________________ which allows a developer to code, test, and implement programs.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology