RosettaCodeData/Task/Hostname/Phix/hostname.phix
2026-02-01 16:33:20 -08:00

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