web-dev-qa-db-ja.com

人や情報にないコマンドを見つける方法

私は警告を見つけようとしていますが、人や情報の下でそれを見つけることができません。タイプに関する同様の質問を見つけましたが、それはbashの下にあることがわかりました。グーグルを経由することなく、このようなコマンドをどのように見つけますか?また、誰かがアラートを取得する方法を知っていれば、それも確かに役立ちます。

タイプリンク: タイプコマンドのマニュアルページまたは情報ページはありません

2
user656520

疑問がある場合は、探しているアプリケーションのヘルプ画面を表示します。

~$ alert --help
Usage:
  notify-send [OPTION...] <SUMMARY> [BODY] - create a notification

Help Options:
  -?, --help                        Show help options

Application Options:
  -u, --urgency=LEVEL               Specifies the urgency level (low, normal, critical).
  -t, --expire-time=TIME            Specifies the timeout in milliseconds at which to expire the notification.
  -a, --app-name=APP_NAME           Specifies the app name for the icon
  -i, --icon=ICON[,ICON...]         Specifies an icon filename or stock icon to display.
  -c, --category=TYPE[,TYPE...]     Specifies the notification category.
  -h, --hint=TYPE:NAME:VALUE        Specifies basic extra data to pass. Valid types are int, double, string and byte.
  -v, --version                     Version of the package.

ヘルプ画面が示すように、アラートは実際にはnotify-sendであり、type alertを実行すると、個別にインストールされたパッケージではないため、notify-sendにエイリアスされていることがわかります。

~$ type alert
alert is aliased to `notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e 's/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//')"'

aliasを単独で入力すると、設定されているすべてのエイリアスが表示されます。

~$ alias
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
3
Terrance