UNIX Commands ~ Quiz 1/22/25

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

1/84

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.

85 Terms

1
New cards

pwd

show the current working directory

2
New cards

man

display the manual for a command

3
New cards

ls

list files and directories

4
New cards

ls -l

display detailed information about files and directories

5
New cards

ls -a

list all files, including hidden files

6
New cards

ls -lrt

list files sorted by modification time in reverse order

7
New cards

ls -alh

display detailed information including hidden files in human-readable format

8
New cards

clear

clear terminal screen

9
New cards

cat

concatenate and display file contents

10
New cards

cat -n

number all lines of the output

11
New cards

cat >

create a new file and write to it

12
New cards

cat >>

append text to an existing file

13
New cards

head

show the first few lines of a file

14
New cards

head -20

display the first 20 lines of a file

15
New cards

tail

show the last few lines of a file

16
New cards

more

view file contents one screen at a time; basic

17
New cards

less

view file contents with scrolling; advanced

18
New cards

diff

compare two files line by line

19
New cards

cd

change current directory

20
New cards

mkdir

create new directories

21
New cards

rm

remove files or directories

22
New cards

rm -r

remove directories and their contents recursively

23
New cards

rm -i

prompt before every removal

24
New cards

rm -f

force removal without prompting for confirmation

25
New cards

rmdir

remove empty directories

26
New cards

cp

copy files or directories

27
New cards

cp -r

copy directories and their contents recursively

28
New cards

cp -i

prompt before overwriting files copy

29
New cards

cp -f

force copy by overwriting files without prompting

30
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

31
New cards

chmod -R

change permissions recursively for directories and their contents

32
New cards

mv

move or rename files and directories

33
New cards

mv -i

prompt before overwriting files

34
New cards

mv -f

force move by overwriting files without permission

35
New cards

wc

count lines, words, and characters in a file

36
New cards

wc -l

count number of lines

37
New cards

wc -w

count number of words

38
New cards

wc -m

count number of characters

39
New cards

df

display available disk space on file systems

40
New cards

df -h

show disk space usage in human-readable format

41
New cards

top

show real-time info about system processes

42
New cards

ps

list currently running processes

43
New cards

ps aux

display detailed information about all processes

44
New cards

grep

search for patterns in files

45
New cards

grep -n

display matching lines with their line numbers

46
New cards

grep -i

search for patterns in a case-insensitive manner

47
New cards

grep -c

count number of matching lines

48
New cards

grep -w

match whole words only

49
New cards

egrep

enable extended regular expressions

50
New cards

grep -m

limit the number of matches displayed

51
New cards

grep -color

highlight the matched text in color

52
New cards

grep -rl

search for matching text recursively in files and output filenames

53
New cards

grep -o

display only the matched text

54
New cards

sort

sort lines of text in a file

55
New cards

sort -r

sort in reverse order

56
New cards

sort -k

sort based on a specific key or column

57
New cards

sort -f

ignore case while sorting

58
New cards

sort -o

save sorted output to a file. Can be used for in-place sorting.

59
New cards

sort -n

perform numeric sorting

60
New cards

paste

merge lines of files

61
New cards

paste -s

merge all lines into a single line

62
New cards

paste -d

specify a custom delimiter for merging

63
New cards

cut

remove sections from each line of a file

64
New cards

cut -d

specify a delimiter for field separation

65
New cards

cut -f

specific specific fields to display

66
New cards

cut -c

select specific character positions

67
New cards

join

join two lines of two files on a common fieldj

68
New cards

join -a

include unpaired lines from one or both files

69
New cards

join -t

specific a custom delimiter for joining fields

70
New cards

echo

print text or the value of variables to the terminalsu

71
New cards

su

switch to another user

72
New cards

sudo

execute commands as the superuser or another user

73
New cards

touch

create or update the timestamp of a file

74
New cards

history

show command history

75
New cards

reset

reset the terminal to fix display issues

76
New cards

alias

create shortcuts for commands

77
New cards

unalias

remove shortcuts for commands

78
New cards

sed

perform text substitution, deletion, and line-based editing

79
New cards

sed ‘s/<pattern>/<replacement>/gi’

substitute all matches ignoring case, applying globally

80
New cards

sed -i’.bak’

edit in place, creating a backup with the .bak extension

81
New cards

sed -n’/pattern/p’

print only lines that match the pattern

82
New cards

sed’/pattern/d’

delete lines that match the patternse

83
New cards

sed’y/<oldchars>/<newchars>/’

translate characters one-to-one

84
New cards

sed -e

combine multiple editing commands in a single executions

85
New cards

sed -f

execute sed commands from a file