Skip to content

Instantly share code, notes, and snippets.

@LadyNamedLaura
Last active March 8, 2016 12:03
Show Gist options
  • Save LadyNamedLaura/e18b00742f8ea4e51535 to your computer and use it in GitHub Desktop.
Save LadyNamedLaura/e18b00742f8ea4e51535 to your computer and use it in GitHub Desktop.
download with locking :-)
#!/bin/bash
set -e
set -x
exec 100> "$2.tmp"
flock -n 100
curl "$1" -o "/dev/fd/100"
mv "$2.tmp" "$2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment