Skip to content

Instantly share code, notes, and snippets.

View r0hnx's full-sized avatar
I may be slow to respond.

Rohan r0hnx

I may be slow to respond.
View GitHub Profile
@r0hnx
r0hnx / github.js
Created June 16, 2019 11:13
initial JavaScript file
const child = require('child_process');
const path = require('path');
function git() {
child.spawnSync('sh', ['-c', `sh ${path.resolve(__dirname)}/.github.sh`], {
stdio: 'inherit',
stdin: 'inherit'
});
}