Added bash scripts execute example code.
diff --git a/example/amd64.sh b/example/amd64.sh
new file mode 100755
index 0000000..42be16e
--- /dev/null
+++ b/example/amd64.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+set -e
+
+go install && example
diff --git a/example/android.sh b/example/android.sh
new file mode 100755
index 0000000..b332b59
--- /dev/null
+++ b/example/android.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+set -e
+
+GOOS=linux GOARCH=arm GOARM=7 go build -o go-disruptor
+adb push go-disruptor /data/local/tmp
+adb shell "cd /data/local/tmp; chmod 755 go-disruptor; ./go-disruptor"