Re: [Sshpass-devel] FW: sshpass at HPUX 11.31
Brought to you by:
thesun
From: Shachar S. <sh...@sh...> - 2017-11-11 15:24:05
|
On 06/11/17 16:43, LI Michael via Sshpass-devel wrote: > > Hi Shemesh, > > Thank you very much for your reply. > > I am greatly appreciated you will provide me a patch. > > > > I tried “sleep 20 >/dev/null 2>&1 </dev/null” on my HPUX box, > pressing Ctrl-C cannot abort the sleep, but on my linux box, pressing > Ctrl-C aborts the sleep. > > > > Thanks and regards. > > Michael Li > > > > SWIFT | Security Infrastructure, Messaging Solutions > Tel: +1 703 365 6136 > www.swift.com <http://www.swift.com/> > Hi, Can you please test the attached patch and see if it solves your problem? Also, please run the program below and let me know what it prints: #include <stdio.h> int main() { #ifdef hpux printf("HPUX\n"); #else printf("Not HPUX\n"); #endif return 0; } Thanks, Shachar |