hblock/resources/alt-formats/domains.txt.sh
Héctor Molinero Fernández e6f7399afe Changed domain name
2019-03-10 17:52:21 +01:00

23 lines
436 B
Bash
Executable file

#!/bin/sh
# Author: Héctor Molinero Fernández <hector@molinero.dev>
# Repository: https://github.com/hectorm/hblock
# License: MIT, https://opensource.org/licenses/MIT
set -eu
export LC_ALL=C
main() {
hosts="${1:-/etc/hosts}"
hblock="${2:-hblock}"
#resourcesDir="${3:-./resources}"
HBLOCK_HEADER='' \
HBLOCK_FOOTER='' \
HBLOCK_SOURCES="file://$hosts" \
$hblock -qO- \
--template '\1' \
--comment ''
}
main "$@"