Use find with the –name (Sobell, page 830) and –type (Sobell, page 830) cri- teria to list all files in the /bin directory that have the characters sh in their names and are symbolic links.

What will be an ideal response?

$ find /bin -name "*sh*" -type l
/bin/sh
/bin/csh

Computer Science & Information Technology

You might also like to view...

Augment your indexes.html page so that in addition to displaying the wind chill index when the user clicks the button, it also displays a health warning message when appropriate. For example, the appearance of the page when the wind chill reaches the Danger category (? -45º).

What will be an ideal response?

Computer Science & Information Technology

Analyze the following code:

``` #include using namespace std; void xFunction(int x[], int length) { cout << " " << x[length - 1]; xFunction(x, length - 1); } int main() { int x[] = {1, 2, 3, 4, 5}; xFunction(x, 5); } ``` A. The program displays 5 4 3 2 1. B. The program displays 1 2 3 4 5 and then raises an ArrayIndexOutOfBoundsException. C. The program displays 1 2 3 4 6. D. The program displays 5 4 3 2 1 and then raises an ArrayIndexOutOfBoundsException.

Computer Science & Information Technology