7 lines
241 B
Text
7 lines
241 B
Text
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
|