From 9c776c34001939420b09f04453123de6d17c0d6a Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Mon, 22 Jun 2020 11:06:05 -0700 Subject: [PATCH] Change interpreter from #!/usr/bin/bash to #!/bin/bash --- cptemplate.sh | 2 +- fless.sh | 2 +- gek.sh | 2 +- lsgroups.sh | 2 +- lsusers.sh | 2 +- open.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cptemplate.sh b/cptemplate.sh index 9e50d4d..5aedd96 100755 --- a/cptemplate.sh +++ b/cptemplate.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash # Copy a file from ~/Templates to a given name # # Dependencies: diff --git a/fless.sh b/fless.sh index 37a61c8..80b1e1a 100755 --- a/fless.sh +++ b/fless.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash # fless - fuzzy find a file and run less on it # Dependencies # - fd (soft) diff --git a/gek.sh b/gek.sh index 8b79d78..f0e8c00 100755 --- a/gek.sh +++ b/gek.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash # Export a key to a given keyfile echo -n "Enter the name of the output file: " diff --git a/lsgroups.sh b/lsgroups.sh index 206a487..67ed59d 100755 --- a/lsgroups.sh +++ b/lsgroups.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash # List all groups in the system sort <(awk -F ':' '{print $1}' < /etc/group) diff --git a/lsusers.sh b/lsusers.sh index e4c82e5..b484159 100755 --- a/lsusers.sh +++ b/lsusers.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash # List all users on the system sort --unique <(awk -F ':' '{print $1}' < /etc/passwd) diff --git a/open.sh b/open.sh index 21d77bd..18b787b 100755 --- a/open.sh +++ b/open.sh @@ -1,4 +1,4 @@ -#!/usr/bin/bash +#!/bin/bash # open - fuzzy find, select, and open a file using xdg-open # # Dependencies: