This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## ELinks 0.13.GIT configuration file | |
## mime | |
# MIME-related options (handlers of various MIME types). | |
## mime.extension | |
# Extension <-> MIME type association. | |
## mime.extension.mp4 <str> | |
# MIME-type matching this file extension ('*' is used here in place of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S bash -euo pipefail | |
# | |
# Fetch all available manpages. | |
# | |
n=$(apt-cache pkgnames | wc -l) | |
i=0 | |
for e in $(apt-cache pkgnames) | |
do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env sh | |
# | |
# /vmfs/volumes/datastore3/backup/backup.sh | |
# | |
# Backup virtual machines. | |
# | |
# This will create a backup of my virtual machines. It has | |
# very little error handling, since no error handling will | |
# ever be fool proof enough for me to trust it, so I will |