Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an script that reads some urls and get them to axel to download them. I want stop script on sometimes and resume it further. Axel can resumes file downloading. So if I press Ctrl+C when downloading, the next time, it starts from the resume of file.

but axel doesn't check that the file existed. So it appends ".0" to the end of file name and start downloding it twice. How I can tell to axel if the file with same name existed, skip that and don't downloading it??

share|improve this question

1 Answer

If you want axel to resume, You should use

axel -o NAME_OF_EXISTING_FILE

If you want to check if file exists

if [ -f $FILE ];
then
   echo "File $FILE exists." #operation related to when file exists
else
   echo "File $FILE does not exist." #operation related to when file does not exists
fi

Or

if [ ! -f /tmp/foo.txt ];
then
    echo "File not found!" #operation related to when file does not exists
fi

Bash script from here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.