Skip to content

Instantly share code, notes, and snippets.

@a-yasui
Created October 17, 2016 02:11
Show Gist options
  • Select an option

  • Save a-yasui/7940da69a17ce385a43a4cd0a1d26846 to your computer and use it in GitHub Desktop.

Select an option

Save a-yasui/7940da69a17ce385a43a4cd0a1d26846 to your computer and use it in GitHub Desktop.
psコマンドで表示されるメモリー容量を、MB単位で表示
#!/bin/sh
ps uax | awk 'BEGIN{FS=" ";OFS="\t";}{print $1,$2,$3,$4,$5,$6/1024 " MB",$7,$8,$9,$10,$11;}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment