mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
5 lines
167 B
Text
5 lines
167 B
Text
|
#!/usr/bin/env sh
|
||
|
set -eu
|
||
|
# https://superuser.com/a/207474
|
||
|
apropos . | fzf --no-multi --tiebreak=begin --query="$*" | sed -n 's/^\([^ ]\+\) \?(\([^)]\+\)).*$/\2 \1/p'
|