Skip to content

Instantly share code, notes, and snippets.

@syohex
Created June 8, 2016 03:27
Show Gist options
  • Save syohex/e4e76e8827785211054bf4d9c76ef23e to your computer and use it in GitHub Desktop.
Save syohex/e4e76e8827785211054bf4d9c76ef23e to your computer and use it in GitHub Desktop.
Download NetBSD source code archives and extract them
#!/bin/sh
set -e
set -x
for file in src syssrc sharesrc
do
curl -LO http://ftp.jaist.ac.jp/pub/NetBSD/NetBSD-7.0.1/source/sets/${file}.tgz
tar xvf ${file}.tgz
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment