cowsay: fix commands for zsh (#5742)

manned-org
Nicolas Kosinski 2021-04-13 20:07:18 +02:00 committed by GitHub
parent a048bdb1bf
commit 6c4068b019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 18 deletions

View File

@ -3,21 +3,21 @@
> Genera un personaggio ASCII (di default una mucca) che dice o pensa qualcosa.
> Maggiori informazioni: <https://github.com/tnalpgge/rank-amateur-cowsay>.
- Stampa una mucca ASCII che dice "Hello world!":
- Stampa una mucca ASCII che dice "Hello world":
`cowsay "Hello world!"`
`cowsay "Hello world"`
- Usa il testo da standard input per il fumetto:
`echo "Ciao!" | cowsay`
`echo "Ciao" | cowsay`
- Elenca tutti i personaggi disponibili:
`cowsay -l`
- Stampa un drago ASCII che dice "Ciao!":
- Stampa un drago ASCII che dice "Ciao":
`cowsay -f dragon "Ciao!"`
`cowsay -f dragon "Ciao"`
- Stampa una mucca ASCII sballata che pensa:

View File

@ -3,22 +3,22 @@
> 무언가를 말하거나 생각하는 ASCII 문자(기본적으로 cow)를 생성.
> 더 많은 정보: <https://github.com/tnalpgge/rank-amateur-cowsay>.
- "Hello world!"라고 말하는 ASCII cow 출력:
- "Hello world"라고 말하는 ASCII cow 출력:
`cowsay "Hello world!"`
`cowsay "Hello world"`
- 풍선에 표준 입력의 텍스트 사용:
`echo "Hello!" | cowsay`
`echo "Hello" | cowsay`
- 사용 가능한 모든 문자 나열:
`cowsay -l`
- "Hello!"라고 말하는 ASCII dragon 출력:
- "Hello"라고 말하는 ASCII dragon 출력:
`cowsay -f dragon "Hello!"`
`cowsay -f dragon "Hello"`
- 돌로 된 생각하는 ASCII cow 출력:
`cowthink -s "I'm just a cow, not a great thinker ..."`
`cowthink -s "I'm just a cow, not a great thinker..."`

View File

@ -3,22 +3,22 @@
> Generate an ASCII character (by default a cow) saying or thinking something.
> More information: <https://github.com/tnalpgge/rank-amateur-cowsay>.
- Print an ASCII cow saying "Hello world!":
- Print an ASCII cow saying "Hello world":
`cowsay "Hello world!"`
`cowsay "Hello world"`
- Use text from standard input for the balloon:
- Read text from stdin for the balloon:
`echo "Hello!" | cowsay`
`echo "Hello" | cowsay`
- List all available characters:
`cowsay -l`
- Print an ASCII dragon saying "Hello!":
- Print an ASCII dragon saying "Hello":
`cowsay -f dragon "Hello!"`
`cowsay -f dragon "Hello"`
- Print a stoned thinking ASCII cow:
`cowthink -s "I'm just a cow, not a great thinker ..."`
`cowthink -s "I'm just a cow, not a great thinker..."`