seat 3 chapter 1 exploring linux command-line tools Flashcards
what are shell environment variables?P4
They are placeholders for data that may be useful to many programs
What is the Linux shell used for?P4
Entering commands and configuring for each individual user, and Linux provides a range of available shells.
The original C shell isn’t used much on Linux, but if a user is familiar with —-, tcsh makes a good substitute?P5
chs
What was the ksh designed for?P5
To make the best features of the bourn shell and the c shell and extend them.
What is zsh?P5
It tasks shell evolution further than the Korn shell by incorporating features from earlier shells and adding still more.
In Linus most users run — because it is the most popular shell?P5
bash
What is a good firs command to try?P6
uname
What will uname show?P6
What O S is being run.
Internal commands that are built into the shell program are also a called what?P6
Built in commands
What is Time an operation?P7
The time command times how long subsequent commands take to execute.
What is terminate the shell?P7
It is the exit and logout commands both to terminate the shell.
Keep in mind that even when external commands are installed, the —— —— takes precedence?P8
internal command
What is PATH?P8
It is a list of directories in which commands can be found.
How do you retrieve a command?P10
The simplest way to do this is to press the up arrow key on your keyboard; this brings up the previous command.
How do you move within the line?P10
Press Ctrl+a orCtrl+e to move the cursor to the start or end of the line respectively. Ctrl+b and Ctrl+f do the same moving backward and forward within the line