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)