LPIC1 Notes
Shells
CSH
TCSH
KSH
ZSH
BSH
BASH BASH is based on BSH and are the most popular.
BASH - based on BSH â Sometimes with symbolic link.
TCSH - based on csh
Not a default shell on any Distro
Similar to BASH
KSH - is designed to take the best features of BSH & CSH and improve/extend on them.
ZSH - takes evolution of shell even further then KSH, incorporating features from earlier Shells as well.
Symbolic Link to Systemâs default shell: /bin/sh
Commands
exit - terminates shell logout - terminates only login shell.
CTRL + A - move to start of line
CTRL + E - move to end of line
CTRL + B - Doubles as â
CTRL + F - Doubles as â
CTRL + N - Doubles as arrow down
CTRL + P - Doubles as arrow up
Esc + B - Jumps back
Esc + F - Jumps forward
CTRL + C - Cancel
CTRL + L - Clear (or you can type âclearâ)
BACKSPACE - Deletes Backwards DELETE - Deletes Forward
CTRL + K - Deletes everything from cursor forward.
CTRL + T - Takes characters before cursor and moves it forward.
Esc + T - Moves whole word forward Esc + U - Changes case (uppercase, lowercase) Esc + C - Converts letter under cursor to uppercase moving cursor to end of line.
CTRL (X+E) - Full editor from EMACS
cd - Change the working directory
pwd - Display the working directory (prints on the screen where you at!)
echo - displays the text you have entered (typing âecho Helloâ causes the system to display the string âHelloâ) - used for scripting
exec - runs an external program that you specified (executes program)
time - shows how long subsequent commands take to execute. 3 Times are displayed:
Total execution time (aka REAL TIME)
User CPU time
System CPU time
set - displays a wide variety of options relating to bash operations.
exit / logout - both terminate the shell.
Confusion over Internal and External Commands
When duplicate internal and external commands exist, they sometimes produce subtly different results or accept different options.
These might create problems sometimes: Consider the pwd command and symbolic links to directories. Suppose you create a symbolic to /bin within your home directory and then cd into that directory. You then want to know where you are. The pwd command thatâs internal to bash will produce a different result from the external pwd command.
As you can see, bashâs internal pwd show the path via the symbolic link, whereas the external command shows the path to which the link points.
The path is a list of directories in which commands can be found. It is defined by the PATH Environment Variable.
When you type a command thatâs not recognized by the shell as one of its internal commands, the shell checks its path to find a program by that name and execute it.
WARNING: The root account should normally have a shorter path than ordinary user accounts, typically, you will omit directories that store GUI and other user-oriented programs from rootâs path in order to discourage the use of the root account for routine operations, minimizing the risk of security.
In case of both programs on the path and paths you type as part of the command, the program must be masked as executable. - Done via the executable bit that is stored within the file.
In order to adjust a programâs executable status use chmod
Shell Command Tricks
Tab - Command completion; type part of command or filename; press tab; shell tries to fill in rest of command.
History - Keeps record of every command you type.
Bash History is stored in the .bash_history file in your home directory.
history - brings up commands you typed (typically the last 500 lines)
history -c - clears history (which can be handy if youâve recently typed commands youâd rather not have discovered by others, such as commands that include passwords)
Search
CTRL + R - Reverse Search â Type unique char for the command â Pressing CTRL + R searches through the commands containing the search.
If you want to edit the command after you have found it with search, you can move within the line with CTRL + A to move at start of the line or CTRL + E to move at the end of the line.
To delete text press: CTRL + D or the DELETE KEY which deletes the character under the cursor. Where by pressing BACKSPACE KEY deletes the character to the left of the cursor.
In order to launch a full-fledged editor to edit commands you can use CTRL + X followed by CTRL + E. - These commands are the most useful ones supported by bash.
Exploring Shell Configuration
Shells are configured through files that hold configuration options in a plain-text format.
The bash configuration files are actually bash shell scripts.
Main user configuration files for BASH:
~/.bshrc
~/.profile
Main global configuration files for BASH:
/etc/bash.bashrc
/etc/profile
Be careful when making changes to configuration files, particularly the global configuration file. Best practice: Make backup of original, test changes, if problem occurs revert back to original config file.
Using Environment Variables
Environment variables are like variables in programming languages, they hold data to be referred to by the variable name.
You can add variables with the commands:
= export
There are programs that need this information and can refer to the environment variable:
Can be done from shell by using: echo $Variable
Getting Help (Manual Pages)
man = manual; pages that provide summaries of what commands, features or files do.
Spacebar = move forward a page
Esc + V = move backward a page
/ = search for text
q = exit
info = info pages; are like man pages bu use hypertext format so you can move from section to section of the documentation for a program.
Good link for research
Using Streams, Redirection and Pipes
Streams, redirection and pipes are some of the more powerful command-line tools in Linux.
Linux treats input and output as streams, which is data that can be manipulated. You can manipulate the input or output ti come from/ go to other sources. Similarly you can pipe the output of one program into another.
Exploring Types of Streams
Standard Input = Programs accept keyboard input via standard input aka STDIN. In most cases this is data that comes into computer from a keyboard.
Standard Out = Text-mode programs send most data to their users via standard output aka STDOUT, which is displayed on the screen.
Standard Error = Linux provides a second type of output stream known as standard error aka STDERR. This output stream is intended to carry high-priority info such as error messages.
Redirecting Input and Output
To redirect output you use symbols following the command including options it takes.
Commands for Streams, Redirects and Pipes
| = Creates a new file containing standard output. If file exists it will overwrite onto it.
|| = Appends standard output to the existing file. If file doesnât exist, it creates it.
2> = Creates a new file containing standard error. If file exists, it overwrites it.
2>> = Appends standard error to the existing file. If the file doesnât exist, it creates it.
&> = Creates new file containing both STDOUT and STDERR. If file exists, it overwrites it.
&>> = Appends STDOUT and STDERR to existing file. If file doesnât exist, it creates is.
< = Sends the contents of the specific file to be used as standard input.
<< = Accepts text on the following lines as standard input.
<> = Causes the specific file to be used for both standard input and standard output.
| = Redirects STDOUT of one program to STDIN of a second program.
A common trick is to redirect STDOUT or STDERR to /dev/null - This file is a device thatâs connected to nothing. It is used when you want to get rid of data.
tee = Command splits standard input so that itâs displayed on standard output and on as many files as you specify.
Piping Data Between Programs
Programs can frequently operate on other programsâ output. You can use one programs STDOUT as another program'sâ STDIN
How it works:
Normally if you use redirection you will have to: Send first programâs STDOUT to a file â redirect 2nd programâs STDIN to read from that file.
By doing this it can lead to unnecessary cluttering on your system.
Solution is to use pipes (aka pipelines):
A pipe redirects the first programâs STDOUT to the second programâs STDIN.
Generating Command Lines:
xargs = command that builds a command from its standard input.
Example:
printf â1\n2\n3\nâ = would print lines 1, 2, 3
printf â1\n2\n3\nâ | xargs touch = would create file 1, 2, 3
printf â1\n2\n3\nâ | xargs - i touch {}.txt = would replace text for 1 2, 3 with the extension text. (The brackets {} shows the xargs command where to replace the text)
Another xargs intro
Last updated