mirror of
https://github.com/shadoll/sscript.git
synced 2025-12-20 08:31:00 +00:00
12 lines
232 B
JavaScript
Executable File
12 lines
232 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// @package sscripts
|
|
// @author sHa <sha@shadoll.dev>
|
|
// @copyright 2019 shadoll
|
|
// @version 19.6.7
|
|
// @link https://shadoll.dev
|
|
|
|
const [,, ...args] = process.argv
|
|
|
|
console.log(`Hello ${args}`)
|