mirror of
https://github.com/jbranchaud/til
synced 2026-01-10 10:38:01 +00:00
15 lines
220 B
Markdown
15 lines
220 B
Markdown
# Repeat Yourself
|
|
|
|
Use the `repeat` command to repeat yourself. You can repeat yourself a
|
|
number of times
|
|
|
|
```
|
|
$ repeat 5 say Hello World
|
|
```
|
|
|
|
or you can repeat yourself indefinitely
|
|
|
|
```
|
|
$ repeat -1 say Hello World
|
|
```
|