Skip to content

Instantly share code, notes, and snippets.

@syusui-s
Created August 2, 2016 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syusui-s/a8321bc98ec928121c8e59dbded3cdd0 to your computer and use it in GitHub Desktop.
Save syusui-s/a8321bc98ec928121c8e59dbded3cdd0 to your computer and use it in GitHub Desktop.
for i in $(cat /usr/include/asm/unistd_32.h | grep NR | sed 's/^.*__NR_\([^ ]*\).*/\1/g');do
echo -e "$i"; echo -n "\t";
man 2 $i | grep -B2 SYNOPSIS | head -1 | tail -2 | sed 's/[^-]* - \(.*\)$/\1/';
done | less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment