kiibohd-controller/Lib/CMake/writer
Dan McGregor 6cea31c463 Start removing select Linux-isms
bash might not be in /bin. Don't expect it there.
2016-02-25 23:04:26 -08:00

10 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 $?