Add index.js
This commit is contained in:
parent
d2c44f887e
commit
3ce2d1a1d7
1 changed files with 8 additions and 0 deletions
8
index.js
Normal file
8
index.js
Normal 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)
|
||||
})
|
Loading…
Add table
Reference in a new issue