mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-05-24 13:45:03 +00:00
21 lines
526 B
JavaScript
Executable File
21 lines
526 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// Required parameters:
|
|
// @raycast.schemaVersion 1
|
|
// @raycast.title Test Script cmd
|
|
// @raycast.mode compact
|
|
|
|
// Optional parameters:
|
|
// @raycast.icon 🤖
|
|
// @raycast.argument1 { "type": "text", "placeholder": "Placeholder" }
|
|
// @raycast.packageName hahaha
|
|
// @raycast.needsConfirmation true
|
|
|
|
// Documentation:
|
|
// @raycast.description describe
|
|
// @raycast.author huakunshen
|
|
// @raycast.authorURL https://raycast.com/huakunshen
|
|
|
|
console.log("Hello World! Argument1 value: " + process.argv.slice(2)[0])
|
|
|