core :: Sys :: system
# Execute a shell command and return its error code fun system(command: Text): Int do return command.to_cstring.system end
redef fun system(cmd) do if testing_id == 0 then print "[Client] {cmd}" return super(cmd) end
redef fun system(cmd) do print "[Client] {cmd.replace(host_re, "localhost:*****")}" var r = super(cmd) print "" return r end