view Lib/CMake/writer @ 401:99f93dec8fea

Start removing select Linux-isms bash might not be in /bin. Don't expect it there.
author Dan McGregor <dan.mcgregor@usask.ca>
date Mon, 10 Aug 2015 14:49:46 -0600
parents c127188dcc80
children
line wrap: on
line source

#!/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 $?