CS 3377 Dollinger UNIX Exam 1

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

1/53

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.

54 Terms

1
New cards

What's an absolute path name?

An absolute path name is relative to the root directory and can be used/referenced from any working directory. Absolute path names start with a slash.

ex)

{cslinux1:~} ls /home/013/v/vp/vpn200000/two

2
New cards

What's a relative path name?

A relative path name is relative to the working directory and can only be used/referenced from that working directory.

ex)

{cslinux1:~} cd two

3
New cards

What are three different ways to return to the home directory?

cd

cd ~

cd $home

4
New cards

What is the arrangement of directories and files in the UNIX file system?

The heirarchy starts with the /root, which branches off into /usr and /home directories. The /usr directory then branches off into the /local and /bin directories. Within the home directory are any files you create.

(i think this is all u need to kno)

5
New cards

What is the directory you're in when you first login? (what's the default directory?)

/home/{username}

ex)

/home/013/v/vp/vpn200000

6
New cards

What does .. do?

.. represents the parent directory. If you use it with cd, you can go back one directory.

ex)

{cslinux1:~} cd temp

{cslinux1:~/temp} cd ..

{cslinux1:~}

You can also use this with another directory at the same time to jump back and go into a different directory

ex)

{cslinux1:~} cd temp

{cslinux1:~/temp} cd ../temp2

{cslinux1:~/temp2}

7
New cards

What does . do?

. represents the current directory. However, we usually use it with a slash to execute a file.

ex)

{cslinux1:~} ./test

8
New cards

What is the command that gives you helpful information about a utility?

man [utility]

ex)

{cslinux1:~} man echo

9
New cards

What symbol do hidden files in a directory start with?

.

(a dot)

ex)

/home/user/. config

10
New cards

If you set a variable value in the shell, how do you display it?

echo $myvariable

ex)

{cslinux1:~} myname=arthur

{cslinux1:~} echo $myname

arthur

11
New cards

What does echo $PATH do?

$PATH is an environment variable that has a list of all the directories the system checks before running commands or executable files. echo $PATH will tell you what's stored in this env variable.

12
New cards

What's the command and the option to see everything about a file?

ls -l [filename]

The command is ls, and the option is -l.

ex)

{cslinux1:~} ls -l all

-rwx------ 1 vpn200000 sn 63 Feb 10 04:42 all

13
New cards

What's the symbol you use for the PID inside a shell script?

ex)

(inside a shell script)

#!/bin/bash

echo "The PID of this process is "

14
New cards

What's the command for changing permissions of a file?

chmod [options] [permissions] [file name]

permission users:

- owner (u)

- group (g)

- others (o)

permission types:

- read (r)

- write (w)

- execute (x)

1) if you don't include a user, the permissions will be applied to everyone

2) put a + in front of these types to add permissions

3) put a - in front of these types to remove permissions

ex)

{cslinux1:~} chmod u+x temp

{cslinux1:~} chmod +rwx temp

15
New cards

What's the command that copies files?

cp [originalfilename] [copiedfilename]

ex)

{cslinux1:~} cp hello copiedHello

16
New cards

What's the command that tells you the information about a file?

ls -l [filename]

17
New cards

What's the command you use on a file to display one page of information at a time?

more [options] [filename]

18
New cards

What's the command to make links?

ln [option] [absolutepath] [linkname]

19
New cards

What's the command that outputs the contents of a text file?

cat [filename]

ex)

{cslinux1:~} cat days

Monday

Tuesday

Wednesday

Thursday

Friday

Saturday

Sunday

{cslinux1:~}

20
New cards

What's the command that searches for patterns within a text file?

grep [options] [pattern] [files]

ex)

{cslinux1:~} grep "T" days

Tuesday

Thursday

{cslinux1:~}

21
New cards

What's the command that makes a new subdirectory?

mkdir [directoryname]

ex)

mkdir newDirectory

22
New cards

What's the command that displays information about the users that are currently logged onto the system?

who

23
New cards

What's the command that deletes a nonempty directory?

rm -r [directoryname]

OR

rmdir -r [directoryname]

24
New cards

If I touch a file name, and the file name doesn't already exist, will the touch command create it?

Yes

25
New cards

Within a shell script, what are the symbols that contain the arguments to the command line?

$0 = name of calling program

$1 = first command line argument

$n = nth command line argument

$* = all positional parameters

$# = total number of positional parameters

26
New cards

If you set a variable on the shell and you want a script to be able to read and display it, what command do you have to use on the variable to be available and understood in scripts?

export variableName=value

27
New cards

How do you read in a value from the shell?

read [variablename]

ex) (inside the script)

#!/bin/bash

echo "Enter the user name: "

read first_name

28
New cards

What does the find command do?

find [options] [pattern]

find command searches for files

ex)

find . -name *.txt

# finds all text files in the current directory

29
New cards

What does find -name do?

-name is an option for the find command; it searches for files based on its name

30
New cards

What's the command to list all your files that only start with a dot?

ls .*

31
New cards

What's a shell metacharacter that matches more than one character?

* (asterisk)

ex)

ls *.txt

32
New cards

What's a shell metacharacter that matches only one character?

? (question mark)

ex)

ls ?

# this lists all files that have only one character in their name

33
New cards

What's the character for a pipe?

| (absolute value thing)

pipes redirect ouput to somewhere else, for example, to a file

ex)

{cslinux1:~} cat days | grep T | sort

Thursday

Tuesday

{cslinux1:~}

# redirects output of this command to the file sort

34
New cards

When in vim, what keystroke do you enter to be able to use command mode?

ESC

:wq!

35
New cards

When in vim, what keystroke do you enter to be able to use the editor?

i

36
New cards

When you first pull up vim, what mode is it in?

command mode

37
New cards

When in vim, what's the command to list the contents of the file and to exit the editor?

to list the contents, file [filename]

to exit, ESC :wq!

38
New cards

What do all commands in vim start with?

:

(a colon)

39
New cards

Identify parts of the output of the ls-l command.

[permissions] [link count] [user] [group] [file size] [date] [time] [file name]

ex)

{cslinux1:~} ls -l

total 1592

-rw------- 1 vpn200000 sn 10 Feb 10 19:43 temp

-rw------- 1 vpn200000 sn 4 Feb 10 19:47 temp2

40
New cards

Can you use chmod on files you don't own?

You can only do it if you have write permissions. Otherwise, no.

41
New cards

Can you do ls -l and see permissions on all files or just your own?

You can see all files in the directory, no matter if you own them or not

42
New cards

What's a root?

Roots let you go anywhere and give you absolute authority to do anything you want.

** not sure ab this one but that's wat he said

43
New cards

If I touch a file that already exists, does it go back to having default permissions?

No, it keeps its previous permissions.

44
New cards

Define a token

A token is a sequence of one or more nonblank characters

45
New cards

What symbol do options start with?

-

(hyphen)

46
New cards

Be able to identify a command that has zero options.

ex)

ls

echo

47
New cards

What's a common command that is a builtin?

echo

48
New cards

Understand how to do piping

piping redirects output

use |

49
New cards

What's the comment you need on the first line of a script if you want to make sure it gets executed?

#!/bin/bash

(called shebang line)

50
New cards

What are the two metasymbols to put in front a script to make it run correctly?

./

51
New cards

Do you have to put symbols in front of a function in order to properly execute it?

no

52
New cards

What's the correct syntax for an alias?

alias [aliasname]='[originalname]'

ex)

{cslinux1:~} alias d='date'

{cslinux1:~} alias d

alias d='date'

{cslinux1:~}

53
New cards

Given a file with days of the week, execute grep and identify the output.

ex)

{cslinux1:~} grep "T" days

Tuesday

Thursday

{cslinux1:~}

54
New cards

Where do you store functions or variables that you want to be available when you log on?

Store them in shell configuration files like ~/.bashrc