0e6f107ea1
bash might not be in /bin. Don't expect it there.
11 lines
187 B
Bash
Executable File
11 lines
187 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#| 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 $?
|
|
|