biviosoftware / home-env

MIT License
2 stars 2 forks source link

emacs template for sh files #86

Open robnagler opened 1 year ago

robnagler commented 1 year ago

Make work with template mechanism like b-python.

#!/bin/bash
#source ~/.bashrc
set -eou pipefail
#cd "$(dirname "${BASH_SOURCE[0]}")"

_main() {
    if (( $# < 1 )); then
        echo 'too few args' 1>2&
        return 1
    fi
}

_main "$@"