mirror of
https://github.com/hectorm/hblock.git
synced 2026-04-23 07:26:33 +05:30
23 lines
436 B
Bash
Executable file
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 "$@"
|