সক্রিয় অ্যালিয়াসগুলির তালিকা করতে, চালান:
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