31 lines
444 B
Bash
Executable File
31 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
TYPES="Golang,Vite"
|
|
|
|
CHOISE=$(echo $TYPES | tr "," "\n" | fzf)
|
|
|
|
if [ -z "$CHOISE" ]; then
|
|
echo "No choise"
|
|
exit 1
|
|
fi
|
|
|
|
cd $HOME/projects
|
|
|
|
case $CHOISE in
|
|
Golang)
|
|
cookiecutter https://git.kapelle.org/niklas/cookiecutter-golang
|
|
;;
|
|
Vite)
|
|
npm create vite@latest
|
|
;;
|
|
*)
|
|
echo "Unknown"
|
|
;;
|
|
esac
|
|
|
|
|
|
ls -ltd ./*/ | head -n 1 | awk '{print $9}' | xargs -I {} code {}
|
|
|