Switch lines script from Lua to Shellscript

This commit is contained in:
Talia 2020-01-17 09:47:49 +01:00
parent 3893bc40d9
commit f4fcd597bb
1 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
#!/usr/bin/env lua
for _, argument in ipairs{...} do print(argument) end
#!/bin/sh
echo "$@" | sed -e 's/ \+/\n/g'