当前位置: 技术问答>linux和unix
在linux/unix中如何用Runtime.getRuntime.exec()执行ps -ef | grep SSS | grep -v grep | awk '{print $2}'
来源: 互联网 发布时间:2015-10-17
本文导语: 在linux/unix中如何用Runtime.getRuntime.exec()执行 ps -ef | grep SSS | grep -v grep | awk '{print $2}' 命令? | 写一个shell脚本,将命令重定向到文件,如有必要再从文件读数据.用 Runtime.getRuntime.exec("./pstest"...
在linux/unix中如何用Runtime.getRuntime.exec()执行
ps -ef | grep SSS | grep -v grep | awk '{print $2}'
命令?
ps -ef | grep SSS | grep -v grep | awk '{print $2}'
命令?
|
写一个shell脚本,将命令重定向到文件,如有必要再从文件读数据.用
Runtime.getRuntime.exec("./pstest")
#!/bin/sh
# pstest
ps -ef | grep usb | grep -v grep | awk '{print $2}' > ps.txt
Runtime.getRuntime.exec("./pstest")
#!/bin/sh
# pstest
ps -ef | grep usb | grep -v grep | awk '{print $2}' > ps.txt
|
up
|
ding