This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2015-08-10 20:49:46 +00:00
|
|
|
#!/usr/bin/env bash
|
2014-04-19 08:51:25 +00:00
|
|
|
#| Jacob Alexander 2014
|
|
|
|
#| Arg List
|
|
|
|
#| 1 - File to write to (e.g. final_chip)
|
|
|
|
#| 2 - Contents writing to file (e.g. at90usb1286)
|
|
|
|
|
|
|
|
printf "$2" > "$1"
|
|
|
|
|
|
|
|
exit $?
|
|
|
|
|