CMPSC 311 - Unix Commands

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

Hierachrial File System - Directory Tree

  • Root

  • Home

  • Standard

2
New cards

Standard directory

  • /etc: configuration files

  • /dev: device files

  • /home: user home directories

  • /lib: shared library files used by core systems programs

  • /sbin: system binaries for vital system tasks

  • /usr: programs and support files for users

  • /var: system log files

3
New cards

Types of shell commands

  • binary files: separate programs executed by the shell

  • shell builtins: commands interpreted by the shell; the functionality for these commands is implemented in the shell program itself

  • aliases: shortcuts defined by users to avoid typing long commands or command sequences     

4
New cards

Shell Variables

Variables that a user can set to control the shell's behavior

  • PATH: when a user types a command, the shell looks for the binary in the list of directories present in the PATH variable.    

5
New cards

Input/Output Redirection (3 streams)

  • standard input: where the program reads the input from; attached to the keyboard by default

  • standard output: where the program writes its output, attached to the screen by default

  • standard error: where the program writes its errors; attached to screen by default   

6
New cards

>

Redirect standard output to a file

7
New cards

»

Append standard output to a file

8
New cards

2>

Redirect standard error to a file

9
New cards

<

Read input from a file instead of keyboard

10
New cards

|

Pipe command. Inputs an output of a command to another command

Ex: [command1] | [command2]

11
New cards

man <command>

Provides details of the command 

12
New cards

pwd

Print the pathname of the current directory 

13
New cards

ls

List the files and subdirectories in a directory

14
New cards

cd <directory>

Change directories

15
New cards

cp <file> <file2>

Copy the contents of file into file2

16
New cards

history

List history of all commands issued at system prompt

17
New cards

mv <file> <file2>

Copy file to file2 (file2 replaced)

18
New cards

rm <file>

Remove or delete files

19
New cards

mkdir <dir>

Make a directory

20
New cards

rmdir <dir>

Remove a directory

21
New cards

type

Display information about command type.

22
New cards

alias

Create an alias, aliases allow a string to be substituted for a word when it is used as the first word of a simple command.

23
New cards

echo

display a line of text

24
New cards

cat <files>

Print contents of file in the command window

25
New cards

ls -a

List all the files in a directory including dot files