Removed all env shebangs, replaced with their direct executables

This commit is contained in:
Eric Torres 2018-11-15 06:49:53 -08:00
parent fbb77d58c8
commit 4258b46a5d
14 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
#!/bin/env bash
#!/bin/bash
# Trim an audio file given a startpoint and an endpoint
printHelp() {

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# Copy a file from ~/Templates to a given name
#
# Dependencies:

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
"""Write an ISO image to a usb drive using dd."""
import argparse

View File

@ -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.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/python3
"""Check the temperature of a drive.
Functions:
verify_device_node(query)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# edit - fuzzy find a file and edit it
# Dependencies
# - fd

2
ef.sh
View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# ef - fuzzy find a file and edit it
#
# Dependencies

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# fless - fuzzy find a file and run less on it
# Dependencies
# - fd

2
gek.sh
View File

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

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# Obtain a weather forecast
printHelp() {

View File

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

View File

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

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# open - fuzzy find, select, and open a file using xdg-open
#
# Dependencies:

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
# quickdel - delete any file matching a query
# Dependencies:
# fd