CSCI1302 Unix Commands Masterlist and More

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

1/82

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.

83 Terms

1
New cards

ssh user@hostname

Start a secure shell connection to [hostname] and login as [user]

2
New cards

pwd

Print absolute path of current working directory

3
New cards

date

Print system date and time

4
New cards

exit

Exit current shell

5
New cards

whoami

Print user name associated with current user

6
New cards

ls

List contents of current working directory

7
New cards

ls PATH

List contents of last directory in path; can be absolute or relative

8
New cards

tree PATH

List contents of last directory in path in tree format; can be absolute or relative

9
New cards

ls -l

[ls] uses long listing format

10
New cards

ls -l -h

[ls] uses long listing format with human-readable size units

11
New cards

cd

home directory

12
New cards

cd -

Goes to last directory you worked in

13
New cards

cd a/b/dest

Goes to [dest]; relative path

14
New cards

cd /a/b/dest

Goes to [dest]; absolute path

15
New cards

cd ~/a/b/dest

Goes to [dest]; absolute path

16
New cards

ls -a

[ls] shows hidden files that start with [.]

17
New cards

ls .

[ls] shows contents of [.] (current directory)

18
New cards

ls ..

[ls] shows contents of [..] (parent directory)

19
New cards

cd .

Goes to [.] (current directory)

20
New cards

cd ../..

Goes to [../..] (parent of parent directory)

21
New cards

C-a

Move to beginning of line

22
New cards

C-e

Move to end of line

23
New cards

C-f

Move forward 1 char

24
New cards

M-f

Move forward 1 word

25
New cards

C-b

Move backward 1 char

26
New cards

M-b

Move backward 1 word

27
New cards

cat fileName

Display contents of regular file all at once to standard output (terminal screen)

28
New cards

less fileName

Display contents of regular file 1 page at a time

29
New cards

mkdir dirName

Create directory called [dirName]

30
New cards

mkdir -p PATH

Passively creates directories in path if they do not exist

31
New cards

mv SOURCE DEST

Rename file [SOURCE] to [DEST]

32
New cards

mv SOURCE...DIRECTORY

Move [SOURCE(s)] to [DIRECTORY]

33
New cards

cp SOURCE DEST

Copy [SOURCE] to [DEST]

34
New cards

cp SOURCE...DIRECTORY

Copy [SOURCE(s)] to [DIRECTORY]

35
New cards

cp -r SOURCE DEST

Copy [SOURCE] and its contents to [DEST]

36
New cards

rm PATH

Remove/delete file (cannot remove directory)

37
New cards

rm -r DIRECTORY

Remove/delete directory and contents

38
New cards

touch notes.txt

Creates an empty file called [notes.txt]

39
New cards

emacs PATH

Open file in Emacs

40
New cards

cat...C-d

Displays content from standard input (keyboard)

41
New cards

cat > list1

Redirects output to a file called [list1]

42
New cards

cat >> list1

Appends more inputs to [list1]

43
New cards

cat list1 list2 > biglist

Reads input from [list1] and [list2] and redirects output from both into [biglist]

44
New cards

sort

Like cat but output will be sorted

45
New cards

who

Sees who is on the system with you

46
New cards

ls -lag

List access rights for all files

47
New cards

chmod [options] file

Change access rights for named file

48
New cards

ps

List current processes

49
New cards

sleep [# of seconds]

Waits [# of seconds] before calling next command

50
New cards

&

Runs command in background

51
New cards

bg

Runs suspended job in background

52
New cards

jobs

List current jobs

53
New cards

fg %jobnumber

Restarts suspended process

54
New cards

^C

Kills job running in foreground

55
New cards

kill %jobnumber

Kills suspended/background processes

56
New cards

sort < biglist

Gets input from [biglist] and sorts it

57
New cards

who | sort

Takes input from [who] and sorts it; | connects input and command

58
New cards

javac -d bin src/Code.java

Compiles [Code.java] and puts it in [bin]

59
New cards

java -cp bin Code

Runs [Code], specifying that it is in [bin]; can be used anywhere

60
New cards

-cp some/path

Specifies the classpath (where it is); can be used by both [java] and [javac]

61
New cards

-cp path1:path2

Used to specify multiple paths

62
New cards

try { //regular code } catch { // code to handle exception}

Can place code into [try] block where exceptions are dealt with in [catch] block

63
New cards

throw new [exception] ( [message] );

Create exception and explicitly throw it

64
New cards

throws

In method signature; tells Java that exception won't be handled in this method

65
New cards

javadoc -d doc -sourcepath src -subpackages cs1302

Javadoc creates HTML files for API documentation website

66
New cards

What does -d, -sourcepath, and -subpackages mean in the following command?

javadoc -d doc -sourcepath src -subpackages cs1302

-d = specifies where generated HTML files will go

-sourcepath = shows where source code is

-subpackages = shows which subpackages to go to

67
New cards

ln -s $(pwd)/doc

Shortcut for creating symbolic link

68
New cards

public interface Styleable {}

Declares interface named [Styleable]

69
New cards

public void style();

Abstract method style(); no {}

70
New cards

public class Fancy implements Styleable {}

[Fancy] class implementing interface named [Styleable]

71
New cards

Styleable s = new Fancy("new message");

Declaring variable [s] with [Styleable] type; creating [Fancy] object

72
New cards

Given that Styleable is an interface, is the following valid or unvalid?

Styleable s = new Styleable("new message");

Unvalid b/c you can't create objects with interfaces (they are made up of abstract methods)

73
New cards

What are UML class diagrams made of?

Class name, attributes, and operations

74
New cards

How do you signify private, public, and static in UML diagrams?

- = private

+ = public

underline = static

75
New cards

Format for attributes (UML diagrams)

visibility name : type

76
New cards

Format for operations (UML diagrams)

visibility [<>] methodName(param1: type, param2: type): returnType

77
New cards

Regular arrow (UML diagram)

[Class A] uses [Class B]

78
New cards

Unfilled arrowhead (UML diagram)

[Child] extends [Parent]

79
New cards

Dashed line, unfilled arrowhead (UML diagram)

[SomeClass] implements [SomeInterface]

80
New cards

#! [interpreter] [optional-arg]

First line of interpreter script text file

81
New cards

How to execute interpreter script?

Type the path to interpreter script text file to execute it

82
New cards

#!/bin/bash -x

[-x] prints out command and command execution

83
New cards

#!/bin/bash -e

[-e] stops executing commands if one of them terminates with error