Skip to content

Instantly share code, notes, and snippets.

@kmwalsh
Last active March 24, 2023 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmwalsh/3c2e5c826c9b575158afe52f6629a151 to your computer and use it in GitHub Desktop.
Save kmwalsh/3c2e5c826c9b575158afe52f6629a151 to your computer and use it in GitHub Desktop.
offload (yeet) "which front end build tool was it again?" from brain forever
#!/bin/bash
buildTools=("gulp", "gulp watch", "grunt", "grunt watch", "npm run build", "npm run watch", "npx webpack")
for t in ${buildTools[@]};
do
$t
echo yeet $t
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment