활성 별명을 나열하려면 다음을 실행하십시오.
alias
모든 활성 기능의 이름을 보려면 다음을 실행하십시오.
declare -F
모든 활성 기능의 이름과 정의를 보려면 다음을 실행하십시오.
declare -f
더
별칭에 대한 정보는 다음과 같은 스크립트 친화적 형식입니다.
declare -p BASH_ALIASES
man bash
alias
내장 에 대한 자세한 정보를 제공합니다.
alias [-p] [name[=value] ...]
Alias with no arguments or with the -p
option prints the list of aliases in the
form alias name=value on standard output.
When arguments are supplied, an alias is
defined for each name whose value is given.
A trailing space in value causes the next
word to be checked for alias substitution
when the alias is expanded. For each name
in the argument list for which no value is
supplied, the name and value of the alias is
printed. Alias returns true unless a name
is given for which no alias has been
defined.
기능과 관련 하여 옵션이 설정되어 있으면 더 많은 정보를 제공 할 수 있다고 man bash
설명합니다 .declare
extdebug
Function names and definitions may be listed with
the -f option to the declare or typeset builtin
commands. The -F option to declare or typeset will
list the function names only (and optionally the
source file and line number, if the extdebug shell
option is enabled).
연결
- http://ss64.com/bash/alias.html
- http://linfo.org/alias.html