ความช่วยเหลือสำหรับalias
ระบุว่าสามารถกำหนดชื่อแทนหลายรายการพร้อมกันได้:
alias: alias [-p] [name[=value] ... ]
Define or display aliases.
Without arguments, `alias' prints the list of aliases in the reusable
form `alias NAME=VALUE' on standard output.
Otherwise, 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.
ดังนั้นคุณสามารถใช้การขยายรั้งเพื่อสร้างname=value
คู่:
alias {at,cart,cst}='/bin/cat'
ดังนั้น:
$ alias {at,cart,cst}='/bin/cat'
$ type at cart cst
at is aliased to `/bin/cat'
cart is aliased to `/bin/cat'
cst is aliased to `/bin/cat'
ที่กล่าวว่าให้ดูที่ zsh ซึ่งมีการแก้ไขการพิมพ์ผิดที่มีอยู่ภายใน (ซึ่งจะไม่ช่วยat
แต่จะช่วยคนอื่น ๆ ):
% setopt correct
% sl
zsh: correct `sl' to `ls' [nyae]? y
% setopt correctall
% ls x.v11r4
zsh: correct `x.v11r4' to `X.V11R4' [nyae]? n
/usr/princton/src/x.v11r4 not found
% ls /etc/paswd
zsh: correct to `/etc/paswd' to `/etc/passwd' [nyae]? y
/etc/passwd
หากคุณกดy
เมื่อเชลล์ถามคุณว่าคุณต้องการแก้ไขคำหรือไม่คำนั้นจะถูกแก้ไข หากคุณกดn
มันจะถูกทิ้งให้อยู่ตามลำพัง การกดa
ยกเลิกคำสั่งและการกดe
จะนำบรรทัดขึ้นมาเพื่อแก้ไขอีกครั้งในกรณีที่คุณยอมรับว่าคำนั้นสะกดผิด แต่คุณไม่ชอบการแก้ไข
alias kk='ll'