From 2b5d8dc7e8d413ec1896ce107c71d99ec79a1161 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sat, 15 Dec 2018 21:25:04 -0800 Subject: [PATCH] Change shebang --- gek.sh | 2 +- lsgroups.sh | 2 +- lsusers.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)