Hash : 326cb5df Author : Thomas de Grivel Date : 2025-07-18T21:41:16
wip
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
require Sh true Sh.escape("") "\"\"" Sh.escape("a") "a" Sh.escape("ab") "ab" Sh.escape("abc") "abc" Sh.escape(";") "\";\"" Sh.escape("abc;") "\"abc;\"" Sh.escape("$abc") "\"\\$abc\"" Sh.escape("ab c") "\"ab c\"" Sh.escape("ab\nc") "\"ab\nc\""