Advertisement
chrisrico

Armory Raspberry Pi helper

Dec 8th, 2012
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. cd $(dirname $0)
  4.  
  5. utx=armory.unsigned.tx
  6. stx=armory.signed.tx
  7.  
  8. nano $utx
  9. if [ -f $utx ]; then
  10.   python extras/cli_sign_txdp.py $utx
  11.   if [ -f $stx ]; then
  12.     less $stx
  13.     rm $stx
  14.     sudo shutdown now
  15.   fi
  16. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement