This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Check the balance of a Litecoin address by querying explorer.litecoin.net. | |
# Drop this into /usr/local/bin and make it executable. | |
# Needs curl. | |
# | |
# Helpful? LWSHbKEHT18WX93zrSjBhc1AnxC4UCmbCt | |
if [ "$#" -ne 1 ]; then echo "Usage: litecoin_balance LTC_ADDRESS"; exit 1; fi; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profile> | |
<id>heroku</id> | |
<activation> | |
<activeByDefault>false</activeByDefault> | |
<property> | |
<name>env.HOME</name> | |
<value>/app</value> | |
</property> | |
</activation> | |
<!-- Do Heroku-specific stuff here --> |
NewerOlder