Skip to content

Instantly share code, notes, and snippets.

@marekkowalczyk
Last active January 28, 2021 10:50
Show Gist options
  • Save marekkowalczyk/5dcae326d2148c2757c386776ae455d7 to your computer and use it in GitHub Desktop.
Save marekkowalczyk/5dcae326d2148c2757c386776ae455d7 to your computer and use it in GitHub Desktop.
Print definition of COMMAND, i.e. the line following NAME in its manpage
#!/usr/bin/env bash
# Print definition of COMMAND, i.e. the line following NAME in its manpage
# https://gist.github.com/marekkowalczyk/5dcae326d2148c2757c386776ae455d7
man $1 | col -b | grep -A 3 ^NAME | sed -n 2,3p | sed -E 's/^ +//' | tr '\n' ' '
printf "\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment