Mac CLI Flashcards

1
Q

pwd

A

print working directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

hostname

A

my computer’s network name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

mkdir

A

make directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

cd

A

change directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

ls

A

list directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

rmdir

A

remove directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

pushd

A

push directory. It takes your current directory and “pushes” it into a list for later, then it changes to another directory. It’s like saying, “Save where I am, then go here.” pushd, if you run it by itself with no arguments, will switch between your current directory and the last one you pushed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

popd

A

pop directory. It takes the last directory you pushed and “pops” it off, taking you back there.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

cp

A

copy a file or a directory (cp -r for directory + content)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

mv

A

move a file or a directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

less

A

page through a file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

cat

A

print the whole file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

xargs

A

execute arguments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

find

A

find files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

grep

A

find things inside files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

man

A

read a manual page

17
Q

apropos

A

find which man (manual) page is appropriate

18
Q

env

A

look at your environment

19
Q

echo

A

print some arguments

20
Q

export

A

export/set a new environment variable

21
Q

exit

A

exit the shell

22
Q

sudo

A

DANGER! become super user root DANGER!

23
Q

cd ../../

A

change directory two steps up

24
Q

touch

A

create new empty file

25
Q

rm -rf

A

remove directory and files inside (BE CAREFUL!)