ts
ts copied to clipboard
Simple go Application to get Terminal Size
The current implementation uses syscalls in a way that are not supported by zOS. In order to increase compatibility, a new zos-specific build needs to be added.
Like Solaris, AIX can't call syscall.Syscall and need to use sys/unix functions
``` === RUN TestSize --- FAIL: TestSize (0.00s) ts_test.go:27: inappropriate ioctl for device FAIL ```
I was using `ts` on windows and everything worked fine in cmd.exe. However, when I ran my simple app in powershell, I noticed some strange behavior; it appears that powershell...