Created
September 26, 2018 06:01
-
-
Save y2k-shubham/84a7de710c0606fc5c94f89777a0bf18 to your computer and use it in GitHub Desktop.
Create non-existent sub-directories using Bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/sh | |
# create directories | |
mkdir -p /{main,test}/{resources,scala/com/zomato} | |
mkdir -p {nonsvn,project,target} | |
# create build.sbt file | |
echo ' | |
name := "ProjectName" | |
version := "1.0" | |
scalaVersion := "2.12.4" | |
' > build.sbt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment