mirror of
https://github.com/samsonjs/bin.git
synced 2026-03-25 07:55:47 +00:00
14 lines
175 B
Bash
Executable file
14 lines
175 B
Bash
Executable file
#!/bin/sh
|
|
|
|
bail() {
|
|
echo "$@" >&2
|
|
exit 1
|
|
}
|
|
|
|
p="$HOME/Projects/$1"
|
|
[[ -d "$p" ]] && bail "project exists"
|
|
mkdir "$p"
|
|
cd "$p"
|
|
git init
|
|
touch Readme.md LICENSE
|
|
$VISUAL .
|