summarylogtreecommitdiffstats
path: root/wcd.sh
blob: 5926678c82531423e75d437a1cd38e7e52a1a137 (plain)
1
2
3
4
5
6
7
8
9
wcd() {
  dir=$(mktemp -d)
  script="$dir/wcd.go"

  wcd.exe -G "$dir" "$@"

  [ -f "$script" ] && . "$script"
  rm -rf "$dir" 2>/dev/null
}