How would you change your login shell to tcsh without using root privileges?
What will be an ideal response?
Use chsh.
Computer Science & Information Technology
You might also like to view...
A structure containing a member that’s a pointer to the same structure type is referred to as a __________ structure.
a) self-referential b) self-describing c) self-recursive d) self- elemental
Computer Science & Information Technology
Which of the following will cause a syntax error?
A. for (index = 0; index < 6000000;) { x = 123.456789 / 987.654321; } B. numberArray = new Array(SIZE); C. for (index = 0; index < SIZE; index++) { numberArray[index] = index + 1; } D. for (index = 0; index < SIZE; index++) { bookTitles[index] = prompt ("Enter title for book #" + (index + 1) + ":",ES); }
Computer Science & Information Technology