Compare commits
13 Commits
2019-03-09
...
2019-06-17
Author | SHA1 | Date | |
---|---|---|---|
343df18c83 | |||
b6d2c0b38b | |||
a39f4c9c51 | |||
f2a45a7ca3 | |||
61250fed0d | |||
af39e1d81e | |||
2074672357 | |||
081d098a54 | |||
74c8cd5de5 | |||
ea736c8978 | |||
e165d6768f | |||
5660ef32ad | |||
a671d8d1a9 |
@ -1,4 +1,3 @@
|
|||||||
# File for excluding block devices from being written to
|
# File for excluding block devices from being written to
|
||||||
# Write one device per line, shell-style globs are accepted i.e. /dev/sda*
|
# One rule per line, regular expressions are accepted i.e. /dev/sda[0-9]?
|
||||||
# Brace expansion is not supported
|
|
||||||
# Lines beginning with "#" and ";" are ignored
|
# Lines beginning with "#" and ";" are ignored
|
||||||
|
53
ddusb.py
53
ddusb.py
@ -2,15 +2,19 @@
|
|||||||
"""Wrapper script for using dd to write to a USB drive."""
|
"""Wrapper script for using dd to write to a USB drive."""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import glob
|
import os
|
||||||
import pathlib
|
import pathlib
|
||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
# ========== Constants ==========
|
# ========== Constants ==========
|
||||||
COMMENT_PATTERN = "^[#;]"
|
COMMENT_PATTERN = r"^[#;]"
|
||||||
EXCLUDE_FILE = "/etc/helper-scripts/ddusb-exclude.conf"
|
EXCLUDE_FILE = "/etc/helper-scripts/ddusb-exclude.conf"
|
||||||
|
|
||||||
|
E_BLOCKDEVICE_ERROR = 1
|
||||||
|
E_EXCLUDE_ERROR = 2
|
||||||
|
E_DD_ERROR = 3
|
||||||
|
|
||||||
|
|
||||||
# ========== Functions ==========
|
# ========== Functions ==========
|
||||||
def read_exclude_file(exclude_file):
|
def read_exclude_file(exclude_file):
|
||||||
@ -33,23 +37,6 @@ def read_exclude_file(exclude_file):
|
|||||||
return lines
|
return lines
|
||||||
|
|
||||||
|
|
||||||
def expand_globs(*globs):
|
|
||||||
"""For each glob given, expand these globs and return a list
|
|
||||||
containing each glob expanded.
|
|
||||||
|
|
||||||
:param globs: patterns to expand
|
|
||||||
:type globs: str
|
|
||||||
:returns: all expanded globs aggregated together
|
|
||||||
:rtype: list
|
|
||||||
"""
|
|
||||||
expanded_globs = []
|
|
||||||
|
|
||||||
for line in globs:
|
|
||||||
expanded_globs.extend(glob.glob(line, recursive=True))
|
|
||||||
|
|
||||||
return expanded_globs
|
|
||||||
|
|
||||||
|
|
||||||
# ========== Main Script ==========
|
# ========== Main Script ==========
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("-b", "--bs", default=512, help="block size", metavar="bs")
|
parser.add_argument("-b", "--bs", default=512, help="block size", metavar="bs")
|
||||||
@ -59,23 +46,23 @@ args = parser.parse_args()
|
|||||||
|
|
||||||
block_size = args.bs
|
block_size = args.bs
|
||||||
input_file = args.input_file
|
input_file = args.input_file
|
||||||
block_device = args.output_file
|
block_path = args.output_file
|
||||||
|
|
||||||
# Ensure that block_device is really a block device
|
# Ensure that block_path is really a block device
|
||||||
if not pathlib.Path(block_device).is_block_device():
|
if not pathlib.Path(block_path).is_block_device():
|
||||||
print(f'Error: "{block_device}" is not a block device')
|
print(f'Error: "{block_path}" is not a block device')
|
||||||
exit(1)
|
exit(E_BLOCKDEVICE_ERROR)
|
||||||
|
|
||||||
# Check if block_device is excluded
|
# Check if block_path is excluded
|
||||||
exclude_patterns = read_exclude_file(EXCLUDE_FILE)
|
exclude_patterns = read_exclude_file(EXCLUDE_FILE)
|
||||||
device_blacklist = expand_globs(*exclude_patterns)
|
|
||||||
|
|
||||||
if block_device in device_blacklist:
|
for pattern in exclude_patterns:
|
||||||
print(f'Error: "{block_device}" is blacklisted from running dd')
|
if re.fullmatch(pattern, block_path):
|
||||||
exit(2)
|
print(f'Error: "{block_path}" is blacklisted from running dd')
|
||||||
|
exit(E_EXCLUDE_ERROR)
|
||||||
|
|
||||||
print(f"Input file: {input_file}")
|
print(f"Input file: {input_file}")
|
||||||
print(f"Block device: {block_device}")
|
print(f"Block device: {block_path}")
|
||||||
print(f"Block size: {block_size}")
|
print(f"Block size: {block_size}")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@ -83,13 +70,13 @@ try:
|
|||||||
[
|
[
|
||||||
"dd",
|
"dd",
|
||||||
f"if={input_file}",
|
f"if={input_file}",
|
||||||
f"of={block_device}",
|
f"of={block_path}",
|
||||||
f"bs={block_size}",
|
f"bs={block_size}",
|
||||||
"status=progress",
|
"status=progress",
|
||||||
],
|
],
|
||||||
check=True,
|
check=True,
|
||||||
)
|
)
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
exit(3)
|
exit(E_DD_ERROR)
|
||||||
else:
|
else:
|
||||||
subprocess.run("sync")
|
os.sync()
|
||||||
|
95
dlaudio.py
95
dlaudio.py
@ -3,55 +3,72 @@
|
|||||||
|
|
||||||
Dependencies:
|
Dependencies:
|
||||||
=============
|
=============
|
||||||
|
|
||||||
* youtube-dl
|
* youtube-dl
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import pathlib
|
from pathlib import Path
|
||||||
import shutil
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
# =========== Constants ==========
|
# =========== Constants ==========
|
||||||
YOUTUBE_DL_BIN = shutil.which("youtube-dl")
|
YOUTUBE_DL_BIN = "/usr/bin/youtube-dl"
|
||||||
DEFAULT_FILENAME = f"{pathlib.Path.home()}/Music/%(title)s.%(ext)s"
|
DEFAULT_FILENAME = f"{Path.home() / 'Music'}/%(title)s.%(ext)s"
|
||||||
|
DEFAULT_YOUTUBE_DL_OPTS = (
|
||||||
# ========== Error Codes ==========
|
|
||||||
E_NOURLS = 2
|
|
||||||
|
|
||||||
# ========== Main Script ==========
|
|
||||||
parser = argparse.ArgumentParser()
|
|
||||||
parser.add_argument("-b", "--batchfile", help="provide the links from a text file")
|
|
||||||
parser.add_argument(
|
|
||||||
"-f", "--format", type=str, default="opus", help="the format to use"
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"-n", "--filename", type=str, help="downloaded filename (without extension)"
|
|
||||||
)
|
|
||||||
parser.add_argument("urls", nargs="*", help="video URLs")
|
|
||||||
args = parser.parse_args()
|
|
||||||
|
|
||||||
dl_opts = [
|
|
||||||
YOUTUBE_DL_BIN,
|
|
||||||
"--no-part",
|
"--no-part",
|
||||||
|
"--audio-quality=0",
|
||||||
"--no-continue",
|
"--no-continue",
|
||||||
"--extract-audio",
|
"--extract-audio",
|
||||||
f"--audio-format={args.format}",
|
)
|
||||||
]
|
|
||||||
|
|
||||||
# filename handling
|
# ----- Error Codes -----
|
||||||
# if -b is used, DEFAULT_FILENAME must take precedence
|
E_NOURLS = 2
|
||||||
if args.filename is not None and args.batchfile is None:
|
|
||||||
dl_opts.append(f"--output={args.filename}")
|
|
||||||
else:
|
|
||||||
dl_opts.append(f"--output={DEFAULT_FILENAME}")
|
|
||||||
|
|
||||||
# URL handling
|
|
||||||
if args.batchfile is not None:
|
|
||||||
dl_opts.append(f"--batch-file={args.batchfile}")
|
|
||||||
elif args.urls is not None:
|
|
||||||
dl_opts.extend(args.urls)
|
|
||||||
else:
|
|
||||||
print("URLs are required")
|
|
||||||
exit(E_NOURLS)
|
|
||||||
|
|
||||||
subprocess.run(dl_opts)
|
# ========== Functions ==========
|
||||||
|
def parse_cmdline_arguments(**kwargs):
|
||||||
|
"""Parse command line arguments passed to the script.
|
||||||
|
All kwargs are passed to ArgumentParser.parse_args().
|
||||||
|
|
||||||
|
:rtype: argparse.Namespace object
|
||||||
|
"""
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("-b", "--batchfile", help="provide the links from a text file")
|
||||||
|
parser.add_argument(
|
||||||
|
"-f", "--format", type=str, default="opus", help="the format to use"
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-n", "--filename", type=str, help="downloaded filename (without extension)"
|
||||||
|
)
|
||||||
|
parser.add_argument("urls", nargs="*", help="video URLs")
|
||||||
|
|
||||||
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
# ========== Main Script ==========
|
||||||
|
if __name__ == "__main__":
|
||||||
|
args = parse_cmdline_arguments()
|
||||||
|
|
||||||
|
dl_opts = [
|
||||||
|
YOUTUBE_DL_BIN,
|
||||||
|
*DEFAULT_YOUTUBE_DL_OPTS,
|
||||||
|
f"--audio-format={args.format}",
|
||||||
|
]
|
||||||
|
|
||||||
|
# filename handling
|
||||||
|
# if -b is used, DEFAULT_FILENAME must take precedence
|
||||||
|
if args.filename is not None and args.batchfile is None:
|
||||||
|
dl_opts.append(f"--output={Path.home() / 'Music' / args.filename}.%(ext)s")
|
||||||
|
else:
|
||||||
|
dl_opts.append(f"--output={DEFAULT_FILENAME}")
|
||||||
|
|
||||||
|
# URL handling
|
||||||
|
if args.batchfile is not None:
|
||||||
|
dl_opts.append(f"--batch-file={args.batchfile}")
|
||||||
|
elif args.urls is not None:
|
||||||
|
dl_opts.extend(args.urls)
|
||||||
|
else:
|
||||||
|
print("URLs are required")
|
||||||
|
exit(E_NOURLS)
|
||||||
|
|
||||||
|
subprocess.run(dl_opts)
|
||||||
|
149
fedit.py
149
fedit.py
@ -14,27 +14,32 @@ import shutil
|
|||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
# ========== Constants ==========
|
# ========== Constants ==========
|
||||||
# Paths
|
# ----- Paths -----
|
||||||
BOOT_DIR = "/boot"
|
BOOT_DIR = "/boot"
|
||||||
ETC_DIR = "/etc"
|
ETC_DIR = "/etc"
|
||||||
|
|
||||||
# Exit Codes
|
# ----- Exit Codes -----
|
||||||
|
E_INTERRUPT = 1
|
||||||
E_NOEDITORFOUND = 2
|
E_NOEDITORFOUND = 2
|
||||||
E_NOFILESELECTED = 3
|
E_NOFILESELECTED = 3
|
||||||
|
|
||||||
# Commands
|
# ----- Commands -----
|
||||||
FIND_CMD = "/usr/bin/fd"
|
FIND_CMD = "/usr/bin/fd"
|
||||||
FIND_OPTS = ["--hidden", "--print0", "--type", "f", "--no-ignore-vcs"]
|
FIND_OPTS = ["--hidden", "--print0", "--type", "f"]
|
||||||
FZF_CMD = "/usr/bin/fzf"
|
EXTRA_FIND_OPTS = {"no_ignore_vcs": "--no-ignore", "no_ignore": "--no-ignore-vcs"}
|
||||||
FZF_OPTS = ["--read0", "--select-1", "--exit-0", "--print0"]
|
|
||||||
LOCATE_CMD = "/usr/bin/locate"
|
LOCATE_CMD = "/usr/bin/locate"
|
||||||
LOCATE_OPTS = ["--all", "--ignore-case", "--null"]
|
LOCATE_OPTS = ["--all", "--ignore-case", "--null"]
|
||||||
|
|
||||||
|
FZF_CMD = "/usr/bin/fzf"
|
||||||
|
FZF_OPTS = ["--read0", "--select-1", "--exit-0", "--print0"]
|
||||||
|
|
||||||
|
# ----- Misc. -----
|
||||||
LOCALE = "utf-8"
|
LOCALE = "utf-8"
|
||||||
|
|
||||||
|
|
||||||
# ========== Functions ==========
|
# ========== Functions ==========
|
||||||
def select_editor(editor_override=None):
|
def select_editor(override=None):
|
||||||
"""Return a possible canonical path to an editor.
|
"""Return a possible canonical path to an editor.
|
||||||
Select an editor from one of:
|
Select an editor from one of:
|
||||||
* -e, --editor
|
* -e, --editor
|
||||||
@ -45,15 +50,15 @@ def select_editor(editor_override=None):
|
|||||||
|
|
||||||
If an editor cannot be resolved, then an Error is raised instead.
|
If an editor cannot be resolved, then an Error is raised instead.
|
||||||
|
|
||||||
:param editor_override: argument to override an editor
|
:param override: argument to override an editor
|
||||||
:returns: path to one of these editors
|
:returns: path to one of these editors
|
||||||
:rtype: str
|
:rtype: str
|
||||||
:raises: FileNotFoundError if an editor could not be resolved
|
:raises: FileNotFoundError if an editor could not be resolved
|
||||||
"""
|
"""
|
||||||
editor = None
|
editor = None
|
||||||
|
|
||||||
if editor_override is not None:
|
if override is not None:
|
||||||
editor = shutil.which(editor_override)
|
editor = shutil.which(override)
|
||||||
elif "EDITOR" in os.environ:
|
elif "EDITOR" in os.environ:
|
||||||
editor = shutil.which(os.environ.get("EDITOR"))
|
editor = shutil.which(os.environ.get("EDITOR"))
|
||||||
elif shutil.which("vim") is not None:
|
elif shutil.which("vim") is not None:
|
||||||
@ -69,12 +74,16 @@ def gen_editor_cmd(filename):
|
|||||||
"""Generate a command line to run for editing a file based on
|
"""Generate a command line to run for editing a file based on
|
||||||
permissions.
|
permissions.
|
||||||
|
|
||||||
|
This command does not pass extra options to the editor, hence
|
||||||
|
there are no arguments to pass for options.
|
||||||
|
|
||||||
:param filename: name of file to edit
|
:param filename: name of file to edit
|
||||||
:type filename: str or path-like object
|
:type filename: str or path-like object
|
||||||
:returns: command to execute to edit file
|
:returns: command to execute to edit file
|
||||||
:rtype: list
|
:rtype: list
|
||||||
"""
|
"""
|
||||||
# possible for a race condition to occur here
|
# Possible for a race condition to occur here
|
||||||
|
# What happens if the file or its metadata changes?
|
||||||
if os.access(filename, os.W_OK):
|
if os.access(filename, os.W_OK):
|
||||||
return [editor, filename]
|
return [editor, filename]
|
||||||
else:
|
else:
|
||||||
@ -90,21 +99,24 @@ def run_fzf(files):
|
|||||||
:rtype: str
|
:rtype: str
|
||||||
"""
|
"""
|
||||||
selected_file = subprocess.run(
|
selected_file = subprocess.run(
|
||||||
[FZF_CMD] + FZF_OPTS, input=files, stdout=subprocess.PIPE
|
[FZF_CMD, *FZF_OPTS], input=files, stdout=subprocess.PIPE
|
||||||
).stdout
|
).stdout
|
||||||
|
|
||||||
return selected_file.decode(LOCALE).strip("\x00")
|
return selected_file.decode(LOCALE).strip("\x00")
|
||||||
|
|
||||||
|
|
||||||
def find_files(directory=None):
|
def find_files(opts, directory=None):
|
||||||
"""Use a find-based program to locate files, then pass to fzf.
|
"""Use a find-based program to locate files, then pass to fzf.
|
||||||
|
|
||||||
|
:param opts: options to pass to the find program
|
||||||
|
:type opts: list of str
|
||||||
:param directory: directory to search for files
|
:param directory: directory to search for files
|
||||||
:type directory: str
|
:type directory: str
|
||||||
:returns: path of user-selected file
|
:returns: path of user-selected file
|
||||||
:rtype: bytes
|
:rtype: bytes
|
||||||
"""
|
"""
|
||||||
cmd = [FIND_CMD] + FIND_OPTS
|
cmd = [FIND_CMD, *opts]
|
||||||
|
|
||||||
if directory is not None:
|
if directory is not None:
|
||||||
cmd.extend(["--", ".", directory])
|
cmd.extend(["--", ".", directory])
|
||||||
|
|
||||||
@ -126,51 +138,76 @@ def locate_files(patterns):
|
|||||||
|
|
||||||
|
|
||||||
# ========== Main Script ==========
|
# ========== Main Script ==========
|
||||||
parser = argparse.ArgumentParser()
|
if __name__ == "__main__":
|
||||||
parser.add_argument(
|
parser = argparse.ArgumentParser()
|
||||||
"-b",
|
parser.add_argument(
|
||||||
"--boot",
|
"-b",
|
||||||
action="store_const",
|
"--boot",
|
||||||
const=BOOT_DIR,
|
action="store_const",
|
||||||
dest="dir",
|
const=BOOT_DIR,
|
||||||
help="edit a file in /boot",
|
dest="dir",
|
||||||
)
|
help="edit a file in /boot",
|
||||||
parser.add_argument(
|
)
|
||||||
"-d", "--dir", dest="dir", type=str, help="edit a file in a given directory"
|
parser.add_argument(
|
||||||
)
|
"-d", "--dir", dest="dir", type=str, help="edit a file in a given directory"
|
||||||
parser.add_argument(
|
)
|
||||||
"-E",
|
parser.add_argument(
|
||||||
"--etc",
|
"-E",
|
||||||
action="store_const",
|
"--etc",
|
||||||
const=ETC_DIR,
|
action="store_const",
|
||||||
dest="dir",
|
const=ETC_DIR,
|
||||||
help="edit a file in /etc",
|
dest="dir",
|
||||||
)
|
help="edit a file in /etc",
|
||||||
parser.add_argument("-e", "--editor", help="use a given editor")
|
)
|
||||||
parser.add_argument("patterns", type=str, nargs="*", help="patterns to pass to locate")
|
parser.add_argument(
|
||||||
|
"-I",
|
||||||
|
"--no-ignore",
|
||||||
|
action="append_const",
|
||||||
|
const="--no-ignore",
|
||||||
|
dest="extra_find_opts",
|
||||||
|
help="do not respect .(git|fd)ignore files",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-i",
|
||||||
|
"--no-ignore-vcs",
|
||||||
|
action="append_const",
|
||||||
|
const="--no-ignore-vcs",
|
||||||
|
dest="extra_find_opts",
|
||||||
|
help="do not respect .gitignore files",
|
||||||
|
)
|
||||||
|
parser.add_argument("-e", "--editor", help="use a given editor")
|
||||||
|
parser.add_argument(
|
||||||
|
"patterns", type=str, nargs="*", help="patterns to pass to locate"
|
||||||
|
)
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
final_find_cmd = [FIND_CMD] + FIND_OPTS
|
user_opts = [] if args.extra_find_opts is None else args.extra_find_opts
|
||||||
editor = ""
|
user_opts.extend(FIND_OPTS)
|
||||||
|
|
||||||
try:
|
editor = ""
|
||||||
editor = select_editor(args.editor)
|
|
||||||
except FileNotFoundError as e:
|
|
||||||
print(e)
|
|
||||||
exit(E_NOEDITORFOUND)
|
|
||||||
|
|
||||||
# If patterns were passed, use locate
|
try:
|
||||||
# Otherwise check for -d and use fd
|
editor = select_editor(args.editor)
|
||||||
if not args.patterns == []:
|
except FileNotFoundError as e:
|
||||||
files = locate_files(args.patterns)
|
print(e)
|
||||||
else:
|
exit(E_NOEDITORFOUND)
|
||||||
files = find_files(args.dir)
|
|
||||||
|
|
||||||
selected_file = run_fzf(files)
|
# If patterns were passed, use locate
|
||||||
|
# Otherwise check for -d and use fd
|
||||||
|
files = (
|
||||||
|
find_files(user_opts, args.dir)
|
||||||
|
if not args.patterns
|
||||||
|
else locate_files(args.patterns)
|
||||||
|
)
|
||||||
|
|
||||||
if not selected_file == "":
|
try:
|
||||||
cmd = gen_editor_cmd(selected_file)
|
selected_file = run_fzf(files)
|
||||||
subprocess.run(cmd)
|
except KeyboardInterrupt:
|
||||||
else:
|
exit(E_INTERRUPT)
|
||||||
exit(E_NOFILESELECTED)
|
|
||||||
|
if selected_file != "":
|
||||||
|
cmd = gen_editor_cmd(selected_file)
|
||||||
|
subprocess.run(cmd)
|
||||||
|
else:
|
||||||
|
exit(E_NOFILESELECTED)
|
||||||
|
182
quickdel.py
Normal file
182
quickdel.py
Normal file
@ -0,0 +1,182 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
"""
|
||||||
|
quickdel - delete any file matching a query
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
============
|
||||||
|
* fd
|
||||||
|
* python-termcolor
|
||||||
|
|
||||||
|
Command-Line Arguments
|
||||||
|
======================
|
||||||
|
* -d, --directories-only
|
||||||
|
* -D, --directory TODO: implement this
|
||||||
|
* -e, --empty-only
|
||||||
|
* -E, --extension
|
||||||
|
* -f, --files-only
|
||||||
|
* -F, --force-directory-delete
|
||||||
|
* -i, --no-ignore
|
||||||
|
* -I, --no-ignore-vcs
|
||||||
|
* -l, --links-only
|
||||||
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import os
|
||||||
|
import os.path
|
||||||
|
import re
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
from termcolor import colored
|
||||||
|
|
||||||
|
# ========== Constants ==========
|
||||||
|
FD_BIN = "/usr/bin/fd"
|
||||||
|
FD_OPTS = ["--hidden"]
|
||||||
|
# Matches 'y' or 'yes' only, ignoring case
|
||||||
|
USER_RESPONSE_YES = r"^[Yy]{1}([Ee]{1}[Ss]{1})?$"
|
||||||
|
|
||||||
|
E_NO_RESULTS = 1
|
||||||
|
E_USER_RESPONSE_NO = 2
|
||||||
|
E_INPUT_INTERRUPTED = 3
|
||||||
|
|
||||||
|
|
||||||
|
# ========== Functions ==========
|
||||||
|
def color_file(filename):
|
||||||
|
"""Return correct color code for filetype of filename.
|
||||||
|
|
||||||
|
Example
|
||||||
|
-------
|
||||||
|
>>> color_file('Test File', 'red')
|
||||||
|
'\x1b[31mTest String\x1b[0m'
|
||||||
|
|
||||||
|
:param filename: file to determine color output for
|
||||||
|
:type filename: str
|
||||||
|
:return: filename with ANSII escape codes for color
|
||||||
|
:rtype: str
|
||||||
|
"""
|
||||||
|
if os.path.isdir(filename):
|
||||||
|
return colored(filename, "blue")
|
||||||
|
elif os.path.islink(filename):
|
||||||
|
return colored(filename, "green")
|
||||||
|
else:
|
||||||
|
return filename
|
||||||
|
|
||||||
|
|
||||||
|
# ========== Main Script ==========
|
||||||
|
if __name__ == "__main__":
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument(
|
||||||
|
"-d",
|
||||||
|
"--directories-only",
|
||||||
|
action="store_const",
|
||||||
|
const=["--type", "directory"],
|
||||||
|
dest="fd_extra_opts",
|
||||||
|
help="filter results to directories",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-e",
|
||||||
|
"--empty-only",
|
||||||
|
action="store_const",
|
||||||
|
const=["--type", "empty"],
|
||||||
|
dest="fd_extra_opts",
|
||||||
|
help="filter results to empty files and directories",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-E",
|
||||||
|
"--extension",
|
||||||
|
action="append",
|
||||||
|
dest="extensions",
|
||||||
|
help="file extension",
|
||||||
|
metavar="ext",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-f",
|
||||||
|
"--files-only",
|
||||||
|
action="store_const",
|
||||||
|
const=["--type", "file"],
|
||||||
|
dest="fd_extra_opts",
|
||||||
|
help="filter results to files",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-F",
|
||||||
|
"--force-directory-delete",
|
||||||
|
action="store_true",
|
||||||
|
help="do not ignore non-empty directories, delete anyways",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-I",
|
||||||
|
"--no-ignore-vcs",
|
||||||
|
action="store_const",
|
||||||
|
const="--no-ignore-vcs",
|
||||||
|
dest="fd_extra_opts",
|
||||||
|
help="do not ignore .gitignore",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-i",
|
||||||
|
"--no-ignore",
|
||||||
|
action="store_const",
|
||||||
|
const="--no-ignore",
|
||||||
|
dest="fd_extra_opts",
|
||||||
|
help="do not ignore .gitignore and .fdignore",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-l",
|
||||||
|
"--links-only",
|
||||||
|
action="store_const",
|
||||||
|
const=["--type", "symlink"],
|
||||||
|
dest="fd_extra_opts",
|
||||||
|
help="filter results to symlinks",
|
||||||
|
)
|
||||||
|
parser.add_argument("patterns", nargs="+", help="file matching patterns")
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.fd_extra_opts is not None:
|
||||||
|
FD_OPTS.extend(args.fd_extra_opts)
|
||||||
|
if args.extensions is not None:
|
||||||
|
for ext in args.extensions:
|
||||||
|
FD_OPTS.extend(["--extension", ext])
|
||||||
|
|
||||||
|
files = set()
|
||||||
|
for pattern in args.patterns:
|
||||||
|
cmd = [FD_BIN, *FD_OPTS, pattern]
|
||||||
|
files.update(
|
||||||
|
subprocess.run(cmd, capture_output=True, text=True).stdout.splitlines()
|
||||||
|
)
|
||||||
|
files = sorted(files)
|
||||||
|
|
||||||
|
if files == []:
|
||||||
|
print(f"No results found, exiting")
|
||||||
|
exit(E_NO_RESULTS)
|
||||||
|
|
||||||
|
# Pretty print all filenames
|
||||||
|
for index, filename in enumerate([color_file(f) for f in files], 1):
|
||||||
|
print(f"{index}. {filename}")
|
||||||
|
# Padding line
|
||||||
|
print()
|
||||||
|
|
||||||
|
try:
|
||||||
|
user_response = input("Would you like to delete these files? ")
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
exit(E_INPUT_INTERRUPTED)
|
||||||
|
|
||||||
|
if re.match(USER_RESPONSE_YES, user_response) is None:
|
||||||
|
print("Operation cancelled")
|
||||||
|
exit(E_USER_RESPONSE_NO)
|
||||||
|
|
||||||
|
# Remove files first
|
||||||
|
for f in [fi for fi in files if os.path.isfile(fi)]:
|
||||||
|
os.remove(f)
|
||||||
|
|
||||||
|
# Check -f, --force-directory-delete option
|
||||||
|
rmdir_func = shutil.rmtree if args.force_directory_delete else os.rmdir
|
||||||
|
|
||||||
|
for d in filter(os.path.isdir, files):
|
||||||
|
try:
|
||||||
|
rmdir_func(d)
|
||||||
|
except OSError:
|
||||||
|
print(
|
||||||
|
f"{colored('Warning', 'yellow')}: {colored(d, 'blue')} is not empty, not deleting directory"
|
||||||
|
)
|
||||||
|
|
||||||
|
print(colored("\nDeletions complete", "green"))
|
@ -1,7 +1,6 @@
|
|||||||
#compdef ddusb
|
#compdef ddusb
|
||||||
|
|
||||||
# zsh completions for 'ddusb'
|
# zsh completions for 'ddusb'
|
||||||
# automatically generated with http://github.com/RobSis/zsh-completion-generator
|
|
||||||
local arguments
|
local arguments
|
||||||
|
|
||||||
arguments=(
|
arguments=(
|
||||||
|
@ -2,12 +2,13 @@
|
|||||||
local arguments
|
local arguments
|
||||||
|
|
||||||
arguments=(
|
arguments=(
|
||||||
$argument_list
|
{-h,--help}'[show this help message and exit]'
|
||||||
{-h, --help}'[show this help message and exit]'
|
{-b,--boot}'[edit a file in /boot]'
|
||||||
{-b, --boot}'[edit a file in /boot]'
|
{-d,--dir}'[edit a file in a given directory]'
|
||||||
{-d, --dir}'[edit a file in a given directory]'
|
{-E,--etc}'[edit a file in /etc]'
|
||||||
{-E, --etc}'[edit a file in /etc]'
|
{-e,--editor}'[use a given editor]'
|
||||||
{-e, --editor}'[use a given editor]'
|
{-I,--no-ignore}'[do not respect .(git|fd)ignore files]'
|
||||||
|
{-i,--no-ignore-vcs}'[do not respect .gitignore files]'
|
||||||
'*:filename:_files'
|
'*:filename:_files'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -4,11 +4,17 @@
|
|||||||
local arguments
|
local arguments
|
||||||
|
|
||||||
arguments=(
|
arguments=(
|
||||||
{-d,--directories-only}'[only delete directories]'
|
{-d,--directories-only}'[filter results to directories]'
|
||||||
|
{-e,--empty-only}'[filter results to empty files and directories]'
|
||||||
|
{-f,--files-only}'[filter results to files]'
|
||||||
|
{-F,--force-directory-delete}'[do not ignore non-empty directories, delete anyways]'
|
||||||
|
{-E,--extension}'[file extension]'
|
||||||
{-h,--help}'[print this help page]'
|
{-h,--help}'[print this help page]'
|
||||||
{-i,--no-ignore}'[do not ignore .gitignore and .fdignore]'
|
{-i,--no-ignore}'[do not ignore .gitignore and .fdignore]'
|
||||||
{-I,--no-ignore-vcs}'[do not ignore .gitignore]'
|
{-I,--no-ignore-vcs}'[do not ignore .gitignore]'
|
||||||
|
{-l,--links-only}'[filter results to symlinks]'
|
||||||
'*:filename:_files'
|
'*:filename:_files'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
_arguments -s $arguments
|
_arguments -s $arguments
|
||||||
|
Reference in New Issue
Block a user