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
KEYMAPOPTS="us us" | |
HOSTNAMEOPTS="-n alpine" | |
INTERFACESOPTS="auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet dhcp | |
hostname alpine | |
" | |
TIMEZONEOPTS="-z UTC" |
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/bash | |
# | |
# LitterBox v1.0 - Safe for filenames with spaces | |
# An implementation of litterbox.catbox.moe API in Bash | |
# Author: MineBartekSA (Original Script) | |
# Modified for safer filename handling | |
# Check if cURL is installed | |
if ! command -v curl &> /dev/null; then | |
echo -e "\e[91mcURL not found!\e[0m" |