I have loaded debian etch into my NAS and I am trying to use it to routinely extract information from a website. Since there are quite a lot of pages to download, I used the nohup command, like this:
nohup ./script.sh $
Then the script runs as expected, but suddenly I changed my mind and want to modifiy the script a bit before running it again. How can I terminate the script which is now running?
Thanks.