20-Unix Input/Output and Regular Expressions

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

This set of flashcards covers key terms and concepts related to Unix Input/Output operations and the use of regular expressions in searching files.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

10 Terms

1
New cards

STDIN

Standard Input; where programs expect to find their input.

2
New cards

STDOUT

Standard Output; where programs write any generated output.

3
New cards

STDERR

Standard Error; where programs write error messages.

4
New cards

Redirection

The process of sending input and output to and from files instead of standard input/output devices.

5
New cards

Piping

A method to connect the output of one command to the input of another command.

6
New cards

grep

A command used to search for patterns in files and print lines that contain those patterns.

7
New cards

Regular Expressions (regex)

A powerful notation for matching strings in files using patterns.

8
New cards

Metacharacters

Special characters used in regular expressions that have specific meanings.

9
New cards

Fixed Patterns

Simple string searches that do not utilize the flexibility of regular expressions.

10
New cards

Escape Character

The character used to indicate that the following character should be treated literally.