Change shebang

This commit is contained in:
Eric Torres 2018-12-15 21:25:04 -08:00
parent 1e62b03ab0
commit 2b5d8dc7e8
3 changed files with 3 additions and 3 deletions

2
gek.sh
View File

@ -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: "

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/bash
# List all groups in the system
sort <(awk -F ':' '{print $1}' < /etc/group)

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/bash
# List all users on the system
sort --unique <(awk -F ':' '{print $1}' < /etc/passwd)