Unix Operating System and Shell Programming

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

1/51

flashcard set

Earn XP

Description and Tags

Flashcards covering key vocabulary and concepts related to the Unix Operating System and Shell Programming.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

52 Terms

1
New cards

Unix

A time-sharing operating system designed for multitasking and simplicity.

2
New cards

Kernel

The core component of the Unix operating system responsible for managing system resources.

3
New cards

Shell

A command interpreter in Unix that executes user commands and scripts.

4
New cards

Bourne shell

A command line shell in Unix, created by Steve Bourne, prompt symbol is '$'.

5
New cards

C shell

A shell variant for BSD Unix systems created by Bill Joy, uses '%' as its prompt.

6
New cards

Korn shell

A shell combining C and Bourne shell features, designed by Dave Korn.

7
New cards

Hierarchical structure

An organizational method for files in Unix, allowing for a tree-like directory arrangement.

8
New cards

File links

Permits multiple names to reference the same data clusters in Unix.

9
New cards

Access types

Defines the permissions for files in Unix: read (r), write (w), execute (x), or no access (-).

10
New cards

ls

A command that lists the contents of a directory.

11
New cards

pwd

Present working directory; displays the current directory path.

12
New cards

mkdir

Creates a new directory with the specified name.

13
New cards

rm

Removes a specified file or directory.

14
New cards

cp

Copies files from a source to a destination.

15
New cards

mv

Moves or renames a file.

16
New cards

cat

Concatenates files and displays their content.

17
New cards

more

Displays contents of a file one screen at a time.

18
New cards

cmp

Compares two files to check if they are equal.

19
New cards

diff

Lists the differences between two files.

20
New cards

chmod

Changes the access permissions of a file.

21
New cards

Shell script

A program written for the shell that automates tasks in Unix.

22
New cards

Environment variables

Variables that influence the behavior of processes in Unix.

23
New cards

Input/output redirection

Directs the input or output to/from files or devices rather than the default.

24
New cards

Command substitution

A feature that allows the output of a command to replace the command itself.

25
New cards

Decision statement

A conditional expression used to execute commands based on boolean conditions.

26
New cards

Looping constructs

Structures for repeating a set of commands multiple times based on conditions.

27
New cards

Wildcards

Special characters that represent one or more characters in Unix commands.

28
New cards

Filters

Programs that read input, process it, and produce output, like grep and sed.

29
New cards

Function

A reusable block of code in a shell script that performs a specific task.

30
New cards

Variable assignment

Assigning a value to a variable using the syntax: varname=value.

31
New cards

getopts

A built-in command for processing command-line options in shell scripts.

32
New cards

stdin

Standard Input; the default source for reading data, typically the keyboard.

33
New cards

stdout

Standard Output; the default destination for printing output, usually the terminal.

34
New cards

stderr

Standard Error; the default destination for displaying error messages.

35
New cards

Piping

A method for passing the output of one command directly as input to another command.

36
New cards

Redirection symbols

Special characters used to handle the input and output of commands (e.g., >, <, |).

37
New cards

Concurrent access

Multiple processes accessing a file at the same time in Unix.

38
New cards

Script execution

Running a shell script after making it executable.

39
New cards

Comments

Annotations in code denoted by # which are ignored by the shell during execution.

40
New cards

Access control

The management of permissions to read, write, or execute files in Unix.

41
New cards

Dynamic memory

Memory allocation that allows files in Unix to grow as needed.

42
New cards

Function parameters

Arguments passed to functions in shell scripts, accessed using $1, $2, etc.

43
New cards

Conditional execution

Executing commands based on the result of a test or condition.

44
New cards

Command line argument

An input value passed to a script or program via the command line.

45
New cards

File system

The method and data structures that the operating system uses to manage files.

46
New cards

User interface

The means by which users interact with the Unix shell and its commands.

47
New cards

Script editor

A text editor used to write and modify shell scripts.

48
New cards

Error handling

The process of managing errors that occur during command execution in scripts.

49
New cards

Shell environment

The context or state in which shell commands are executed.

50
New cards

Batch processing

Executing a series of commands or scripts without user interaction.

51
New cards

Variable scope

The context within which a variable is accessible and can be used in a shell script.

52
New cards

System libraries

Predefined functions in Unix that programs can use for standard operations.