Extra UNIX Commands

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

1/19

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.

20 Terms

1
New cards

ls

list files and directories

2
New cards

ls -a

list all files and directories, including ones that are hidden

3
New cards

ls -l

list all files and information about those files

4
New cards

cd ..

change to parent directory

5
New cards

cd -

returns you to whatever directory you were in last

6
New cards

grep word file1

search for instances of word in file1

7
New cards

diff file1 file2

Shows the line by line differences between file1 and file2

8
New cards

mkdir directory

make a directory

9
New cards

cd directory

change to named directory

10
New cards

cd

change to home directory

11
New cards

pwd

display the path of the current directory

12
New cards

cp file1 file2

copy file1 and call it file2

13
New cards

mv file1 file2

move or rename file1 to file2

14
New cards

rm file1

remove/ delete file1

15
New cards

rmdir directory

remove a directory

16
New cards

clear

clears the screen

17
New cards

more file1

display file1 a page at a time

18
New cards

cat file1

displays the entire contents of file1 at once

19
New cards

gcc MyProgram.c

command to complie MyProgram.c

20
New cards

./a.out

command to run a C program after compiling