2026-02-01 16:33:20 -08:00
|
|
|
without js -- (system_exec, file i/o)
|
|
|
|
|
constant tmp = "hostname.txt",
|
|
|
|
|
cmd = iff(platform()=WINDOWS?"hostname":"uname -n")
|
|
|
|
|
{} = system_exec(sprintf("%s > %s",{cmd,tmp}),4)
|
|
|
|
|
string host = trim(get_text(tmp))
|
|
|
|
|
{} = delete_file(tmp)
|
|
|
|
|
?host
|