Created
April 8, 2026 15:53
-
-
Save petergi/a38ac929a1b01743760d6456ca99e264 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local function system(command) | |
| local file = assert(io.popen(command, "r")) | |
| local output = file:read("*all"):gsub("%s+", "") | |
| file:close() | |
| return output | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment