×
Tipp: Begrenze die Suche auf deutschsprachige Ergebnisse. Du kannst deine Suchsprache in den Einstellungen ändern.
Der Begriff grep steht für global/regular expression/print oder auch global search for a regular expression and print out matched lines, also etwa „globale Suche nach einem regulären Ausdruck und Ausgabe übereinstimmender Zeilen“.

grep

Programm
grep ist ein Programm, das unter den Betriebssystemen Unix und Unix-Derivaten der Suche und Filterung definierter Zeichenketten aus Dateien oder Datenströmen dient. Es wurde ursprünglich von Ken Thompson entwickelt, erschien erstmals als Teil von... Wikipedia
Betriebssysteme: Unix, Unixoides System, Plan 9, Inferno, OS-9, MSX-DOS, OS/400
Entwickler: Bell Laboratories
Erstveröffentlichungsdaten: November 1973; vor 50 Jahren
Ursprünglicher Autor: Ken Thompson
Weitere Fragen
grep searches for PATTERNS in each FILE. PATTERNS is one or more patterns separated by newline characters, and grep prints each line that matches a pattern.
The grep command searches for lines that contain strings that match a pattern. Every line contains the empty string, so an empty pattern causes grep to find a ...
15.02.2024 · The grep command in Unix/Linux is a powerful tool used for searching and manipulating text patterns within files.
Grep is an essential Linux and Unix command. It is used to search text and strings in a given file. In other words, grep command searches the given file for ...
grep is a command-line utility for searching plaintext datasets for lines that match a regular expression. Its name comes from the ed command g/re/p which ...
17.01.2023 · Grep is a useful command to search for matching patterns in a file. grep is short for "global regular expression print".
grep(value = TRUE) returns a character vector containing the selected elements of x (after coercion, preserving names but no other attributes).
Grep searches one or more input files for lines containing a match to a specified pattern. By default, Grep outputs the matching lines. Downloads.
10.09.2023 · With grep, you can perform simple searches, recursive searches, search for whole words, use multiple search terms, count matches, add context, ...