每3秒打印IP设置信息 2015/05/24 14560 loop do if PLATFORM =~ /linux/i puts `ifconfig ` else puts `ipconfig ` end sleep 3 p '-' * 10 end