Guest User

Simple man page search tool

a guest
May 14th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.10 KB | Source Code | 0 0
  1. #!/bin/bash
  2. SECTION="$1"
  3. apropos -s "$SECTION" . | fzf | awk '{print $1}' | xargs man "$SECTION"
Tags: bash fzf man
Advertisement
Add Comment
Please, Sign In to add comment