E115 Basic Unix Commands

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

1/17

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.

18 Terms

1
New cards

pwd

tells you what directory you are in (Print Working Directory)

2
New cards

man

gives access to the manual pages

3
New cards

cd

stands for Change Directory, helps navigate in the file system

4
New cards

cd ./

moves to the directory you are in

5
New cards

cd ../

moves up 1 directory

6
New cards

ls

List the contents of a directory

7
New cards

ls -a

list all files ( even hidden ones)

8
New cards

ls -al

list all files in the long format

9
New cards

mkdir

creates a directory

10
New cards

cp

Copy command (keeps the original in the same place)

11
New cards

mv

Move command

12
New cards

clear

Command that clears the terminal

13
New cards

rm

remove

14
New cards

rm -f

forced removal

15
New cards

rm -r

recursively: removes whole directories at once)

16
New cards

script

creates a log file

17
New cards

script -a

Append

(Allows user to continue to record on a previous log file)

18
New cards

~/

Command for home directory