Add index.js

This commit is contained in:
Nova Cat 2025-01-20 18:21:04 -08:00
parent d2c44f887e
commit 3ce2d1a1d7

8
index.js Normal file
View file

@ -0,0 +1,8 @@
const { exec } = require('node:child_process')
exec('apk update', (err, output) => {
console.log(output)
})
exec('apk add bash', (err, output) => {
console.log(output)
})