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: