PROJET AUTOBLOG


Links

source: Links

⇐ retour index

Shell Script Best Practices — The Sharat's

jeudi 27 octobre 2022 à 10:51
#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail
if [[ -n "${TRACE-}" ]]; then
    set -o xtrace
fi

if [[ "$1" =~ ^-*h(elp)?$ ]]; then
    echo 'Usage: ./script.sh arg-one arg-two

This is an awesome bash script to make your life better.

'
    exit
fi

cd "$(dirname "$0")"

main() {
    echo do awesome stuff
}

main "$@"

via https://news.ycombinator.com/item?id=33354286
Permalink