Linux Shell Commands and Resources

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

flashcard set

Earn XP

Description and Tags

These flashcards cover key commands and important resources related to the Linux shell.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

The Unix Shell

A website that introduces you to Linux.

2
New cards

LinuxCommand.org

A website dedicated to learning the Linux command line, also provides a free PDF copy of William Shotts’s book The Linux Command Line.

3
New cards

explainshell.com

A site that explains what each argument of a command means when you type it in.

4
New cards

bzip2

A block-sorting file compressor that deletes the original file after compression.

5
New cards

bunzip2

A command that decompresses files, specifically requiring a .bz2 file extension.

6
New cards

cat

Command to concatenate files and print them on standard output.

7
New cards

cd

Command to change directory.

8
New cards

cp

Command to copy files and directories.

9
New cards

chmod

Command to change file mode bits, referring to user types and permissions.

10
New cards

cut

Command used to remove sections from each line of files.

11
New cards

file

Command used to determine the file type.

12
New cards

grep

Command to print lines matching a pattern.

13
New cards

head

Command to output the first part of files.

14
New cards

ls

Command to list directory contents.

15
New cards

less

File filter for scrolling on screen; allows backward scrolling unlike the original command more.

16
New cards

mkdir

Command to make directories.

17
New cards

mv

Command to move (or rename) files.

18
New cards

pwd

Command to print the name of the current/working directory.

19
New cards

rm

Command to remove files or directories.

20
New cards

rmdir

Command to remove empty directories.

21
New cards

sort

Command to sort lines of text files.

22
New cards

tail

Command to output the last part of files.

23
New cards

tar

Archive utility to save multiple files together and extract files from an archive.

24
New cards

uniq

Command to report or omit repeated lines in a file.

25
New cards

wc

Command to print newline, word, and byte counts for each file.