Use consistent shebangs

master
Hektor Misplon 2020-11-01 15:57:10 +01:00
parent 7abc0840ab
commit b47a96a763
5 changed files with 7 additions and 3 deletions

View File

@ -1,2 +1,3 @@
#!/bin/bash
#!/usr/bin/env bash
git clone "https://aur.archlinux.org/$1.git"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
BRAVE_USER_FLAGS_FILE="$XDG_CONFIG_HOME/brave-flags.conf"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash
cd $HOME/.vimwiki
git a $HOME/.vimwiki
git cm 'Update'

View File

@ -1,4 +1,5 @@
#!/bin/bash
#!/usr/bin/env bash
set -euf -o pipefail
VIM=${VIM:-"vim"}

View File

@ -1,2 +1,3 @@
#!/usr/bin/env bash
ip addr show wlan0 | awk '/inet / {gsub(/\/.*/,"",$2); print $2}'