mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-25 13:57:59 +01:00
fix for ponyquotes in tty
This commit is contained in:
parent
e36fdec84b
commit
7f5fc135cf
1 changed files with 2 additions and 1 deletions
3
ponysay
3
ponysay
|
@ -146,7 +146,7 @@ say() {
|
|||
# Ponies use UTF-8 drawing characters. Prevent a Perl warning.
|
||||
export PERL_UNICODE=S
|
||||
|
||||
if [ "$TERM" = "linux" ]; then
|
||||
if [ "$TERM" = "linux" ] || [ "$TERM" = "-linux-" ]; then
|
||||
echo -ne '\e[H\e[2J'
|
||||
fi
|
||||
|
||||
|
@ -244,6 +244,7 @@ if [[ $usepq = 1 ]]; then
|
|||
/usr/bin/pq4ps $@
|
||||
}
|
||||
fi
|
||||
[[ "$TERM" = "-linux-" ]] && TERM="linux"
|
||||
$0 ${wrap:+-W$wrap} $(q "$*")
|
||||
exit
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue