Super Specific UNIX Commands + Other Stuff

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

1/52

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.

53 Terms

1
New cards

echo -n

will cause the command not to output a trailing line

2
New cards

echo -e

enable interpretation of backslash escapes

3
New cards

\a

bell

4
New cards

\b

backspace

5
New cards

\c

prevents a new line following the command

6
New cards

\f

form feed

7
New cards

\n

new line

8
New cards

\r

carriage return

9
New cards

\t

horizontal tab

10
New cards

\v

vertical tab

11
New cards

HOME

home dir

12
New cards

PS1

string used as prompt sign

13
New cards

PS2

prompt sign when [return] is pressed

14
New cards

CDPATH

abs pathnames - affects cd command

15
New cards

SHELL

pathname of bash

16
New cards

TERM

terminal type

17
New cards

TZ

time zone

18
New cards

cat -n

number all output lines

19
New cards

cat -A

display non printing chars

20
New cards

cat -b

number output lines skipping empty lines

21
New cards

wc -w

word count

22
New cards

wc -l

line count

23
New cards

cut -c

print chars by position

24
New cards

cut -d

print chars by delimiter

25
New cards

ps -a

displays the status of all active processes

26
New cards

ps -f

displays a full list of info

27
New cards

grep -c

count matching lines

28
New cards

grep -i

ignore case

29
New cards

grep -l

Displays list of a filenames only.

30
New cards

grep -n

include line number in output

31
New cards

grep -v

displays non-matching lines.

32
New cards

sort -b

ignore leading blanks

33
New cards

sort -d

sorts in alphanumeric or dictionary order

34
New cards

sort -f

ignore case

35
New cards

sort -n

sort numerically

36
New cards

sort -o

writes results to file specified

37
New cards

sort -r

sort in reverse order

38
New cards

shell script: $0

name of script

39
New cards

shell script: $1 ... $9

parameters 1 through parameters 9

40
New cards

shell script: $#

number of parameters

41
New cards

shell script: $@

all parameters

42
New cards

shell script: $?

exit status of prev command

43
New cards

shell script: $*

all parameters

44
New cards

shell script: $$

contains PID (process id)

45
New cards

testing files: test -r fileName

fileName exist and readable?

46
New cards

testing files: test -w fileName

fileName exist and writable?

47
New cards

testing files: test -s fileName

fileName exist and nonzero length?

48
New cards

testing files: test -f fileName

fileName exist and not dir?

49
New cards

testing files: test -d fileName

fileName exist and is dir?

50
New cards

sh -n

reads commands of a shell script but doesn't execute

51
New cards

sh -v

displays the lines of code while executing a shell script

52
New cards

sh -x

displays the command and arguments as a shell script is run

53
New cards

ps -a

displays the status of all active processes