ppi/scripts/npm-quick

7 lines
76 B
Bash
Executable file

#!/bin/sh
mkdir $1;
cd $1 &&
shift &&
npm init -y $@ &&
git init . &&
cd ..