mirror of
https://github.com/Pagwin-Fedora/ppi.git
synced 2025-07-18 06:25:43 +00:00
7 lines
76 B
Bash
Executable file
7 lines
76 B
Bash
Executable file
#!/bin/sh
|
|
mkdir $1;
|
|
cd $1 &&
|
|
shift &&
|
|
npm init -y $@ &&
|
|
git init . &&
|
|
cd ..
|