awk
AWK is a language for processing text files.
process id only | ps -ef | grep proxy | awk '{print $2}' |
filter first and second column | ip a | awk '{print $1, $2}' |
AWK is a language for processing text files.
process id only | ps -ef | grep proxy | awk '{print $2}' |
filter first and second column | ip a | awk '{print $1, $2}' |