main: work in progress [might break]
This commit is contained in:
parent
1583e9bc70
commit
bba9156485
|
@ -1,3 +1,2 @@
|
||||||
#!/bin/js
|
#!/bin/sh
|
||||||
alert("~/bin/helloworld")
|
echo hook.d/alert/yo: yo $*
|
||||||
return done: ~/bin/helloworld
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/awk -f
|
||||||
|
BEGIN{
|
||||||
|
print "hook.d/alert/yo.awk: yo " ARGV[1]
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/js
|
||||||
|
str = "hook.d/alert/yo.js yo"+args.slice(1).join(' ')
|
||||||
|
alert(str)
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env lua
|
||||||
|
print("hook.d/alert/yo.lua: yo " .. args[1])
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env micropython
|
||||||
|
import sys
|
||||||
|
print("hook.d/alert/yo.py: "+sys.argv[1])
|
Loading…
Reference in New Issue