Kiibohd Controller
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

writer 187B

12345678910
  1. #!/usr/bin/env bash
  2. #| Jacob Alexander 2014
  3. #| Arg List
  4. #| 1 - File to write to (e.g. final_chip)
  5. #| 2 - Contents writing to file (e.g. at90usb1286)
  6. printf "$2" > "$1"
  7. exit $?