Merge pull request #2745 from MikeMcQuaid/tty-width
tty: handle non-tty stdin.
This commit is contained in:
commit
cfc40196f2
@ -6,7 +6,10 @@ module Tty
|
||||
end
|
||||
|
||||
def width
|
||||
(`/bin/stty size`.split[1] || 80).to_i
|
||||
width = `/bin/stty size 2>/dev/null`.split[1]
|
||||
width ||= `/usr/bin/tput cols 2>/dev/null`.split[0]
|
||||
width ||= 80
|
||||
width.to_i
|
||||
end
|
||||
|
||||
def truncate(string)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user