Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 154 Bytes

Groovy.md

File metadata and controls

12 lines (8 loc) · 154 Bytes

Groovy

Tips

ping

def proc = 'ping -c 3 192.168.1.100'.execute()
proc.waitFor()
println "Ping ${proc.exitValue() == 0 ? 'OK' : 'NG'}"