diff --git a/zsh/repeat-yourself.md b/zsh/repeat-yourself.md index a2e127d..ce8073c 100644 --- a/zsh/repeat-yourself.md +++ b/zsh/repeat-yourself.md @@ -2,14 +2,8 @@ Use the `repeat` command to repeat some other command. -You can repeat a command a handful of times +You can repeat a command any number of times like so ``` $ repeat 5 say Hello World ``` - -or you can repeat a command indefinitely - -``` -$ repeat -1 say Hello World -```