UNIX Commands 1/15/25

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

1/23

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.

24 Terms

1
New cards

pwd

Print Working Directory; it displays the current directory path in the terminal.

2
New cards

man

Display the manual for a command; _ pwd

3
New cards

ls

List files and directories

4
New cards

clear

Clear the terminal screen

5
New cards

cat

Concatenate and display file contents

cat_>_[file] to edit or add data

6
New cards

head

Show the first few lines of a file

7
New cards

tail

Show the last few lines of a file

8
New cards

more

View file contents one screen at a time; more basic

9
New cards

less

View file contents with scrolling; more advanced

10
New cards

diff

Compare two files line by line

11
New cards

cd

Change the current directory

12
New cards

mkdir

Create new directories

13
New cards

rm

Remove files or directories

14
New cards

rmdir

Remove empty directories

15
New cards

cp

Copy files or directories

16
New cards

chmod

Change file permissions by using 3 digit code

Read: 4, Write: 2, Execute: 1

First digit: Owner’s permissions; Second digit: Group’s permissions; Third Digit: Others’ permissions

You add them based on what you want the permissions to be: 755, 777, 644, 600, 400

17
New cards

mv

Move or rename files and directories

18
New cards

wc

Count lines, words, and characters in a file

19
New cards

df

Display available disk space on file systems

20
New cards

top

Show real-time information about system processes

21
New cards

ps

List currently running processes

ps_aux allows for more information

22
New cards

grep

Search for patterns in files

egrep can be used for multiple patterns

23
New cards

sort

Sort lines of text in a file

24
New cards

paste

Merge lines of files