mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
17 lines
420 B
Markdown
17 lines
420 B
Markdown
# yes
|
|
|
|
> Iets herhaaldelijk uitvoeren.
|
|
> Deze opdracht wordt vaak gebruikt om ja te beantwoorden op elke prompt door installatieopdrachten (zoals apt-get).
|
|
> Meer informatie: <https://www.gnu.org/software/coreutils/yes>.
|
|
|
|
- Print herhaaldelijk "bericht":
|
|
|
|
`yes {{bericht}}`
|
|
|
|
- Print herhaaldelijk "y":
|
|
|
|
`yes`
|
|
|
|
- Accepteer alles wat wordt gevraagd door het commando `apt-get`:
|
|
|
|
`yes | sudo apt-get install {{programma}}`
|