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.
rwxrob-dot/scripts/gosetget

16 lines
283 B
Bash

#!/usr/bin/env bash
_trim() {
local it="${1#"${1%%[![:space:]]*}"}"
echo -e "${it%"${it##*[![:space:]]}"}"
}
while IFS= read -r name; do
name=$(_trim "$name")
[[ -z "$name" ]] && continue
name=${name^}
printf "\t%s() string\n\tSet%s(v string)\n" "$name" "$name"
done