On 10/20/2015 06:05 PM, Steve Trapp wrote:
> I'm a user of *killall*. Of course it is for killing *ALL* processes by name.
> Does killall work?!
>
>
No, but it gives a different response.  Killall responds with "no 
process found."  Kill yields "arguments must be process or job IDs."
But I'm curious.  No one responded whether the following post works for 
them.
$ cat > nonsensical.bash
#!/bin/bash
for I in {1..100} ; do echo "a" > /dev/null ; sleep 10 ; done
^D
$ chmod 755 nonsensical.bash
$ ./nonsensical.bash &
[6] 12253
$ pkill nonsensical
[6]-  Terminated              ./nonsensical.bash