Files
thpeetz-notes/Infos/IT/grep.md
T
2026-01-27 16:34:57 +01:00

12 lines
240 B
Markdown

# Verschiedene Beispiele für die Anwendung von `grep`
> [!code]- Extract a URL with grep
> Quelle: https://www.baeldung.com/linux/shell-get-url-from-string
> ```shell
> grep -o 'http[s]\?://[^ ]\+' file_with_link.txt| head -1
> ```
>