#ローカルの場合
ps -ef | grep name | grep -v grep | awk '{ print $2 }'
#リモートの場合
awkのパラメータをエスケープする必要がある
ssh user@remotehost "ps -ef | grep name | grep -v grep | awk '{ print \$2 }'"
Go to list of users who liked
More than 5 years have passed since last update.
#ローカルの場合
ps -ef | grep name | grep -v grep | awk '{ print $2 }'
#リモートの場合
awkのパラメータをエスケープする必要がある
ssh user@remotehost "ps -ef | grep name | grep -v grep | awk '{ print \$2 }'"
Register as a new user and use Qiita more conveniently
Go to list of users who liked