From 144190b1c933b60f79d851bcfb23ea2c643ba509 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Mon, 22 Jun 2020 11:17:29 -0700 Subject: [PATCH] Revert "Change interpreter from #!/usr/bin/bash to #!/bin/bash" This reverts commit 9c776c34001939420b09f04453123de6d17c0d6a. --- 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 5aedd96..9e50d4d 100755 --- a/cptemplate.sh +++ b/cptemplate.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/bash # Copy a file from ~/Templates to a given name # # Dependencies: diff --git a/fless.sh b/fless.sh index 80b1e1a..37a61c8 100755 --- a/fless.sh +++ b/fless.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/bash # fless - fuzzy find a file and run less on it # Dependencies # - fd (soft) diff --git a/gek.sh b/gek.sh index f0e8c00..8b79d78 100755 --- a/gek.sh +++ b/gek.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/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 67ed59d..206a487 100755 --- a/lsgroups.sh +++ b/lsgroups.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/bash # List all groups in the system sort <(awk -F ':' '{print $1}' < /etc/group) diff --git a/lsusers.sh b/lsusers.sh index b484159..e4c82e5 100755 --- a/lsusers.sh +++ b/lsusers.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/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 18b787b..21d77bd 100755 --- a/open.sh +++ b/open.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/bash # open - fuzzy find, select, and open a file using xdg-open # # Dependencies: