You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.6 KiB
Bash

4 years ago
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-12-20 16:01:28 +0000 (Fri, 20 Dec 2019)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/harisekhon
#
4 years ago
# Helper script for calling from vim function to run programs or execute with args extraction
#
# Runs the value of the 'run:' header from the given file
4 years ago
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
4 years ago
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
4 years ago
4 years ago
# shellcheck disable=SC1090
. "$srcdir/../lib/utils.sh"
4 years ago
# shellcheck disable=SC1090
. "$srcdir/../.bash.d/aliases.sh"
# shellcheck disable=SC1090
. "$srcdir/../.bash.d/functions.sh"
# defer expansion
# shellcheck disable=SC2016
4 years ago
trap_cmd 'exitcode=$?; echo; echo "Exit Code: $exitcode"'
4 years ago
4 years ago
if [ $# -eq 0 ]; then
echo "usage: ${0##*/} <filename>"
exit 3
fi
4 years ago
filename="$1"
4 years ago
# examples:
#
# # run: kubectl apply -f file.yaml
# // run: go run file.go
# -- run: psql -f file.sql
run_cmd="$("$srcdir/parse_run_args.sh" "$filename")"
4 years ago
4 years ago
dirname="$(dirname "$filename")"
4 years ago
basename="${filename##*/}"
4 years ago
cd "$dirname"
4 years ago
if [ -n "$run_cmd" ]; then
eval "$run_cmd"
else
4 years ago
case "$basename" in
4 years ago
Makefile) make
;;
Dockerfile) if [ -f Makefile ]; then
make
else
docker build .
fi
;;
4 years ago
cloudbuild*.y*ml) gcloud builds submit --config "$basename" .
4 years ago
;;
4 years ago
kustomization.yaml) kustomize build
;;
4 years ago
*.go) eval go run "'$filename'" "$("$srcdir/args_extract.sh" "$filename")"
4 years ago
;;
*.tf) terraform plan
;;
4 years ago
*) if [[ "$filename" =~ \.ya?ml$ ]] &&
grep -q '^apiVersion:' "$filename" &&
grep -q '^kind:' "$filename"; then
# a yaml with these apiVersion and kind fields is almost certainly a kubernetes manifest
kubectl apply -f "$filename"
exit 0
fi
if ! [ -x "$filename" ]; then
4 years ago
echo "ERROR: file '$filename' is not set executable!" >&2
exit 1
fi
args="$("$srcdir/args_extract.sh" "$filename")"
4 years ago
echo "'$filename'" "$args" >&2
eval "'$filename'" "$args"
4 years ago
;;
esac
4 years ago
fi