RosettaCodeData/Task/Hostname/Phix/hostname.phix

8 lines
241 B
Text
Raw Permalink Normal View History

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