UNIX commands

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

1/41

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.

42 Terms

1
New cards

ls

contents of working directory

2
New cards

mkdir

make a directory, as a subfile of the current directory

3
New cards

cd

change directory to the one indicated

4
New cards

.

refers to the current directory

5
New cards

..

refers to the parent directory

6
New cards

pwd

print working directory - tells you what directors you're in

7
New cards

~

your home directory

8
New cards

cp file1 file2

makes a copy of file1 in the current working directory and calls it file2

9
New cards

rm filename

remove a file

10
New cards

rmdir directoryname

remove directory (has to be empty)

11
New cards

clear

clears terminal screen

12
New cards

cat filename

display the contents of the file on the screen

13
New cards

less

displays contents of the file on the screen, one page at a time

14
New cards

head

writes first 10 lines of the file to the screen

15
New cards

tail

writes last 10 lines of the file to the screen

16
New cards

grep searchterm searchfile

searches specified file for the specified term. multi-word search terms must be in ' '

17
New cards

wc -w filename

counts the words in the file

18
New cards

wc -l filename

counts the lines in the file

19
New cards

cat > file1

reads the keyboard input into another destination - in this case, redirects output to a file called file1. ctrl-d to stop

20
New cards

cat >> file1

append what i type next to the given file. crtl-d to stop

21
New cards

cat file1 file2 > bigfile

concatenates list1 and list2 into a new file called bigfile

22
New cards

<

redirect input -instead of standard (keyboard), can make it from a file

23
New cards

sort < bigfile > newfile

sorts the contents of bigfile and writes them to newfile

24
New cards

who

says who is on the system with you

25
New cards

|

pipe - connect the output of one file directly to the input of another

26
New cards

who | sort

sorts the list of users and prints directly to the screen

27
New cards

who | wc -1

number of users logged in to the system

28
New cards

*

wild card. can use before or after a command - list or list

29
New cards

?

one character wildcard. *ouse will match mouse and house, but not grouse

30
New cards

.c

indicates a file is written in C code. then you can search your directories for stuff that ends in .c

31
New cards

man command

manual page - tells you more about a certain command

32
New cards

whatis command

one line description of the command (less extensive than man)

33
New cards

apropos keyword

is for if you forget how to invoke a specific command. if the keyword is in the command's manual page, it'll show up here.

34
New cards

date

gives you the current date and time

35
New cards

mv name1 name2

changes the name of name1 to name2

36
New cards

diff file1 file2

tells you the difference between the two files. more: http://linux.about.com/library/cmd/blcmdl1_diff.htm

37
New cards

find path expression

finds the given expression located in the given file. more: http://linux.about.com/od/commands/l/blcmdl1_find.htm

38
New cards

tar

creates compressed archives of directories and files, and can also extract directories and files from an archive. more: http://linux.about.com/od/commands/l/blcmdl1_tar.htm

39
New cards

alias new old

assigns an alias to a command. ex. alias ll ls -l makes ls -l happen whenever you type ll

40
New cards

gcc

compile and link

41
New cards

make executablename

makes the executable according to the makefile's instructions

42
New cards

touch

The touch command updates the access and modification times of the named files to the current time and date