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
|
# Trim an audio file given a startpoint and an endpoint
|
||||||
|
|
||||||
printHelp() {
|
printHelp() {
|
||||||
|
@ -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:
|
||||||
|
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."""
|
"""Write an ISO image to a usb drive using dd."""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
@ -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.
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
2
edit.sh
2
edit.sh
@ -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
2
ef.sh
@ -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
|
||||||
|
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
|
# fless - fuzzy find a file and run less on it
|
||||||
# Dependencies
|
# Dependencies
|
||||||
# - fd
|
# - fd
|
||||||
|
2
gek.sh
2
gek.sh
@ -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: "
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/bin/bash
|
||||||
# Obtain a weather forecast
|
# Obtain a weather forecast
|
||||||
|
|
||||||
printHelp() {
|
printHelp() {
|
||||||
|
@ -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)
|
||||||
|
@ -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)
|
||||||
|
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
|
# open - fuzzy find, select, and open a file using xdg-open
|
||||||
#
|
#
|
||||||
# Dependencies:
|
# Dependencies:
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user