diff --git a/audiotrim.sh b/audiotrim.sh index cf133e4..24fe491 100755 --- a/audiotrim.sh +++ b/audiotrim.sh @@ -1,4 +1,4 @@ -#!/bin/env bash +#!/bin/bash # Trim an audio file given a startpoint and an endpoint printHelp() { diff --git a/cptemplate.sh b/cptemplate.sh index 9ea39b5..7869625 100755 --- a/cptemplate.sh +++ b/cptemplate.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # Copy a file from ~/Templates to a given name # # Dependencies: diff --git a/ddusb.py b/ddusb.py index d3a1354..7131622 100755 --- a/ddusb.py +++ b/ddusb.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 """Write an ISO image to a usb drive using dd.""" import argparse diff --git a/dlaudio.py b/dlaudio.py index b10ba39..c56d876 100755 --- a/dlaudio.py +++ b/dlaudio.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 """Download audio using youtube-dl, passing a specific set of options specified by the user. diff --git a/drivetemp.py b/drivetemp.py index f2b343f..b51b68e 100755 --- a/drivetemp.py +++ b/drivetemp.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 """Check the temperature of a drive. Functions: verify_device_node(query) diff --git a/edit.sh b/edit.sh index a2b1417..ebe5c09 100755 --- a/edit.sh +++ b/edit.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # edit - fuzzy find a file and edit it # Dependencies # - fd diff --git a/ef.sh b/ef.sh index e98eb64..1327bfd 100755 --- a/ef.sh +++ b/ef.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # ef - fuzzy find a file and edit it # # Dependencies diff --git a/fless.sh b/fless.sh index 53b7cfc..7513f10 100755 --- a/fless.sh +++ b/fless.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # fless - fuzzy find a file and run less on it # Dependencies # - fd diff --git a/gek.sh b/gek.sh index 2e8a64e..f0e8c00 100755 --- a/gek.sh +++ b/gek.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # Export a key to a given keyfile echo -n "Enter the name of the output file: " diff --git a/getweather.sh b/getweather.sh index f2c03d0..becdc29 100755 --- a/getweather.sh +++ b/getweather.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # Obtain a weather forecast printHelp() { diff --git a/lsgroups.sh b/lsgroups.sh index a19ad98..67ed59d 100755 --- a/lsgroups.sh +++ b/lsgroups.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # List all groups in the system sort <(awk -F ':' '{print $1}' < /etc/group) diff --git a/lsusers.sh b/lsusers.sh index 6d752bb..b484159 100755 --- a/lsusers.sh +++ b/lsusers.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/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 f680a84..32e1da4 100755 --- a/open.sh +++ b/open.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # open - fuzzy find, select, and open a file using xdg-open # # Dependencies: diff --git a/quickdel.sh b/quickdel.sh index fd4f809..f7d4509 100755 --- a/quickdel.sh +++ b/quickdel.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # quickdel - delete any file matching a query # Dependencies: # fd