10 lines
193 B
Text
10 lines
193 B
Text
|
#!/usr/bin/env lua
|
||
|
|
||
|
local buf = {}
|
||
|
|
||
|
for _, argument in ipairs{...} do
|
||
|
table.insert(buf, "-name '"..argument:gsub("'", [['"'"']]).."'")
|
||
|
end
|
||
|
|
||
|
os.execute("find . " .. table.concat(buf, " -or "))
|