Skip to content

Instantly share code, notes, and snippets.

View phm87's full-sized avatar

phm87

View GitHub Profile
@Janaka-Steph
Janaka-Steph / int2lehex.sh
Created November 5, 2018 13:46
Integer to Little endian hex Conversion Script for Bitcoin Script
#!/bin/bash
if [ -z $1 ];
then
echo "You must include an integer as an argument.";
exit;
fi
if (( $1 > "2147483647" )) || (( $1 < "-2147483647" ));
then