gnu.org

Website:http://www.gnu.org
Upvotes received305
Downvotes received167
Karma:137 (upvotes-downvotes)



0 earned Badges

No badges were found



Definitions (132)

1

1 Thumbs up   0 Thumbs down

Cookie


A peculiar goodie, token, saying or remembrance produced by or presented to a program. (With thanks to Professor Doug McIlroy.)
Source: gnu.org

2

0 Thumbs up   0 Thumbs down

action


A series of awk statements attached to a rule. If the rule’s pattern matches an input record, awk executes the rule’s action. Actions are always enclosed in braces. (See Action Overview.)
Source: gnu.org

3

0 Thumbs up   0 Thumbs down

ADA


A programming language originally defined by the U.S. Department of Defense for embedded programming. It was designed to enforce good Software Engineering practices.
Source: gnu.org

4

0 Thumbs up   0 Thumbs down

Anchor


The regexp metacharacters ‘^’ and ‘$’, which force the match to the beginning or end of the string, respectively.
Source: gnu.org

5

0 Thumbs up   0 Thumbs down

ANSI


The American National Standards Institute. This organization produces many standards, among them the standards for the C and C++ programming languages. These standards often become international stand [..]
Source: gnu.org

6

0 Thumbs up   0 Thumbs down

argument


An argument can be two different things. It can be an option or a file name passed to a command while invoking it from the command line, or it can be something passed to a function inside a program, e [..]
Source: gnu.org

7

0 Thumbs up   0 Thumbs down

array


A grouping of multiple values under the same name. Most languages just provide sequential arrays. awk provides associative arrays.
Source: gnu.org

8

0 Thumbs up   0 Thumbs down

Assertion


A statement in a program that a condition is true at this point in the program. Useful for reasoning about how a program is supposed to behave.
Source: gnu.org

9

0 Thumbs up   0 Thumbs down

ASSIGNMENT


An awk expression that changes the value of some awk variable or data object. An object that you can assign to is called an lvalue. The assigned values are called rvalues. See Assignment Ops.
Source: gnu.org

10

0 Thumbs up   0 Thumbs down

associative array


Arrays in which the indices may be numbers or strings, not just sequential integers in a fixed range.
Source: gnu.org


To view all 132 definitions, please sign in.