Removed all env shebangs, replaced with their direct executables
This commit is contained in:
parent
fbb77d58c8
commit
4258b46a5d
@ -1,4 +1,4 @@
|
||||
#!/bin/env bash
|
||||
#!/bin/bash
|
||||
# Trim an audio file given a startpoint and an endpoint
|
||||
|
||||
printHelp() {
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# Copy a file from ~/Templates to a given name
|
||||
#
|
||||
# Dependencies:
|
||||
|
2
ddusb.py
2
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
|
||||
|
@ -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.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env python3
|
||||
#!/usr/bin/python3
|
||||
"""Check the temperature of a drive.
|
||||
Functions:
|
||||
verify_device_node(query)
|
||||
|
2
edit.sh
2
edit.sh
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# edit - fuzzy find a file and edit it
|
||||
# Dependencies
|
||||
# - fd
|
||||
|
2
ef.sh
2
ef.sh
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# ef - fuzzy find a file and edit it
|
||||
#
|
||||
# Dependencies
|
||||
|
2
fless.sh
2
fless.sh
@ -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
2
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: "
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# Obtain a weather forecast
|
||||
|
||||
printHelp() {
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# List all groups in the system
|
||||
|
||||
sort <(awk -F ':' '{print $1}' < /etc/group)
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# List all users on the system
|
||||
|
||||
sort --unique <(awk -F ':' '{print $1}' < /etc/passwd)
|
||||
|
2
open.sh
2
open.sh
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# open - fuzzy find, select, and open a file using xdg-open
|
||||
#
|
||||
# Dependencies:
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
#!/bin/bash
|
||||
# quickdel - delete any file matching a query
|
||||
# Dependencies:
|
||||
# fd
|
||||
|
Loading…
x
Reference in New Issue
Block a user