Search Results

1
vote

Checking Unix script ftp return codes.

Install the ncftp package. It comes with ncftpget and ncftpput which will each attempt to upload/download a single file, and return with a descriptive error code if there is a problem. See the “Dia …
6
votes

How to terminate script’s process tree in Cygwin bash from bash script

/bin/kill (the program, not the bash builtin) interprets a negative PID as “kill the process group” which will get all the children too. Changing kill %1 …
1
vote

Is it possible to implement a `trap’ for GNU make

No. GNU make’s signal handling already leaves a lot to be desired. From within its signal handler, it calls functions like printf that are not safe to be called from within a signal ha …