Home
Explore
Exams
Search for anything
Login
Get started
Home
Engineering
Computer Science
Basic UNIX Commands
0.0
(0)
Rate it
Learn
Practice Test
Spaced Repetition
Match
Flashcards
Card Sorting
1/42
Earn XP
Description and Tags
Computer Science
University/Undergrad
Add tags
Study Analytics
All
Learn
Practice Test
Matching
Spaced Repetition
Name
Mastery
Learn
Test
Matching
Spaced
No study sessions yet.
43 Terms
View all (43)
Star these 43
1
New cards
/
File System root
2
New cards
\~
Home directory
3
New cards
.
current directory
4
New cards
..
parent directory
5
New cards
ls
list directory contents
6
New cards
find
search for files in a directory hierarchy
7
New cards
mkdir
make directory
8
New cards
rmdir
remove empty directories
9
New cards
cd
change working directories
10
New cards
pwd
print name of working directory
11
New cards
chmod
change permissions of directories
12
New cards
mv
move or rename files
13
New cards
rm
remove files or directories
14
New cards
echo
display a line of text
15
New cards
printf
format and print data
16
New cards
cat
concatenate files and print the standard output
17
New cards
tac
concatenate and print files in reverse
18
New cards
less
page through text one screenful at a time
19
New cards
head
output the first few lines of files
20
New cards
tail
output the last few lines of files
21
New cards
read
read a line from standard input
22
New cards
cal
display calendar
23
New cards
wc
print newline word and byte counts for each file
24
New cards
nl
number of lines of files
25
New cards
sort
sorts lines of text files
26
New cards
uniq
report or omit repeated lines
27
New cards
cut
remove sections from each line of files
28
New cards
paste
merge lines of files
29
New cards
join
join lines of two files on a common field
30
New cards
sed
stream editor for fildering and transforming text
31
New cards
date
print or set the system date and time
32
New cards
touch
change file timestamps
33
New cards
basename
stripa pathname from components
34
New cards
expr
evaluate expressions
35
New cards
ps
report a snapshot of the current processes
36
New cards
sleep
delay for a specified amount of time
37
New cards
exit
cause the shell to exit
38
New cards
>
redirect to standard output (wipe existing)
39
New cards
>>
redirect standard output (append to exisiting)
40
New cards
<
redirect standard input
41
New cards
|
combine commands
42
New cards
tee
read from standard input and write to standard output and files
43
New cards
man
an interface to the system reference manuals