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 # Trim an audio file given a startpoint and an endpoint
printHelp() { printHelp() {

View File

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

View File

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

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python3 #!/usr/bin/python3
"""Download audio using youtube-dl, passing """Download audio using youtube-dl, passing
a specific set of options specified by the user. 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. """Check the temperature of a drive.
Functions: Functions:
verify_device_node(query) verify_device_node(query)

View File

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

2
ef.sh
View File

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

View File

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

2
gek.sh
View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/bin/bash
# Export a key to a given keyfile # Export a key to a given keyfile
echo -n "Enter the name of the output file: " 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 # Obtain a weather forecast
printHelp() { printHelp() {

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/bin/bash
# List all groups in the system # List all groups in the system
sort <(awk -F ':' '{print $1}' < /etc/group) 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 # List all users on the system
sort --unique <(awk -F ':' '{print $1}' < /etc/passwd) 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 # open - fuzzy find, select, and open a file using xdg-open
# #
# Dependencies: # Dependencies:

View File

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