Skip to content

Instantly share code, notes, and snippets.

@memory-lovers
Last active September 3, 2018 02:00
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 memory-lovers/b5424b3d91857b975b138371143dbf83 to your computer and use it in GitHub Desktop.
Save memory-lovers/b5424b3d91857b975b138371143dbf83 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Usage:
# bash <(curl https://gist.githubusercontent.com/memory-lovers/b5424b3d91857b975b138371143dbf83/raw/c807b6813f619a11b850cde7b9c6e315505727a4/create_android_dirs.sh)
dirs='
config/di
config/exception
domain/entity
domain/enums
domain/repository
domain/usecase
presentation
util
'
for d in $dirs; do
mkdir -p $d
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment