diff --git a/scripts/create_sibling.sh b/scripts/create_sibling.sh index d9f1027..5ae58ef 100755 --- a/scripts/create_sibling.sh +++ b/scripts/create_sibling.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # based on: https://wiki.debian.org/RaspberryPi/qemu-user-static ## and https://z4ziggy.wordpress.com/2015/05/04/from-bochs-to-chroot/ diff --git a/scripts/linux_connection_share.sh b/scripts/linux_connection_share.sh index 78df842..a926255 100755 --- a/scripts/linux_connection_share.sh +++ b/scripts/linux_connection_share.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # name of the ethernet gadget interface on the host USB_IFACE=${1:-enp0s20f0u1} diff --git a/sdcard/rootfs/root/pwnagotchi/scripts/blink.sh b/sdcard/rootfs/root/pwnagotchi/scripts/blink.sh index b7e8977..48673dc 100755 --- a/sdcard/rootfs/root/pwnagotchi/scripts/blink.sh +++ b/sdcard/rootfs/root/pwnagotchi/scripts/blink.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash for i in $(seq 1 "$1"); do diff --git a/sdcard/rootfs/root/pwnagotchi/scripts/startup.sh b/sdcard/rootfs/root/pwnagotchi/scripts/startup.sh index ad17973..f158830 100755 --- a/sdcard/rootfs/root/pwnagotchi/scripts/startup.sh +++ b/sdcard/rootfs/root/pwnagotchi/scripts/startup.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # blink 10 times to signal ready state /root/pwnagotchi/scripts/blink.sh 10 &