unix commands

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

1/30

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.

31 Terms

1
New cards

cat

display file contents

2
New cards

cd

change to home directory

3
New cards

cd ..

change directory to parent

4
New cards

cp

copy a file or directory to a destination

5
New cards

ls

Displays the files inside a directory. (basic listing)

6
New cards

ls -l

lists all contents in long format

7
New cards

ls -a

list all files including hidden files

8
New cards

ls -lrt

list files in reverse time order

9
New cards

mkdir

make a new directory

10
New cards

ls -t

order files and directories by the time they were last modified

11
New cards

more

displays data in paginated form

12
New cards

mv

move/rename a file or directory

13
New cards

pwd

print current working directory

14
New cards

rm

remove a file

15
New cards

rmdir

removes an empty directory

16
New cards

man

Displays the manual page for a command

17
New cards

telnet

makes terminal connection

18
New cards

ssh

secure shell

19
New cards

scp

secure shell remote file copy

20
New cards

script

keep script of terminal session

21
New cards

lph

getting physical printout of file

22
New cards

head

displays first 10 lines of file

23
New cards

tail

displays the last 10 lines of a file

24
New cards

.

current directory

25
New cards

..

parent directory

26
New cards

unix shell

bash

27
New cards

cd ~

change to home directory

28
New cards

*

match zero or more (any amount) of characters

29
New cards

?

match one and only one character (could be any
character, just one of them)

30
New cards

man command

read the manual page for a command

31
New cards