Skip to content

Instantly share code, notes, and snippets.

@CurtisNewbie
Created May 28, 2020 03:36
Show Gist options
  • Select an option

  • Save CurtisNewbie/4037c1c6e051db0d3d3b709d3a8868d8 to your computer and use it in GitHub Desktop.

Select an option

Save CurtisNewbie/4037c1c6e051db0d3d3b709d3a8868d8 to your computer and use it in GitHub Desktop.
Simple script to create spring boot project that doesn't have extensions
echo -e '\n'Initiating Spring Boot Starter
echo -e '\n'Enter Artifact Name:
read artName
echo -e '\n'Enter Group Name:
read groupName
mkdir $artName && cd $artName
curl https://start.spring.io/starter.zip -d language=java -d packageName=$groupName -d name=$artName -o $artName.zip
unzip $artName.zip
rm ./$artName.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment