Add lines script

Prints each commandline parameter on a separate line
This commit is contained in:
Talia 2019-07-24 10:34:36 +02:00
parent 650a0a9af3
commit e0cb29460d
1 changed files with 2 additions and 0 deletions

2
bin/lines Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env lua
for _, argument in ipairs{...} do print(argument) end