package
0.1.6
Repository: https://github.com/alexjx/gopher-lua-libs.git
Documentation: pkg.go.dev

# README

shellescape GoDoc

Usage

local shellescape = require("shellescape")

escaped = shellescape.quote("foo bar baz")
-- 'foo bar baz'

escaped_command = shellescape.quote_command({ "echo", "foo bar baz" })
-- echo 'foo bar baz'