nushell - 별칭을 나열하는 방법은 무엇입니까?

nushell - 별칭을 나열하는 방법은 무엇입니까?

이것공식 문서nushell은 다음을 통해 사용 가능한 별칭을 나열할 수 있다고 주장합니다.

$nu.scope.aliases

그러나 이것은 내 Arch Linux 시스템에서는 작동하지 않습니다.

/home/rne〉pacman -Q nushell                                                                                                                                               2023-08-15 20:04:36
nushell 0.83.1-1
/home/rne〉$nu.scope.aliases                                                                                                                                               2023-08-15 20:04:39
Error: nu::shell::column_not_found

  × Cannot find column
   ╭─[entry #13:1:1]
 1 │ $nu.scope.aliases
   · ─┬─ ──┬──
   ·  │    ╰── cannot find column 'scope'
   ·  ╰── value originates here
   ╰────

/home/rne〉echo $nu.scope.aliases                                                                                                                                          2023-08-15 20:04:42
Error: nu::shell::column_not_found

  × Cannot find column
   ╭─[entry #14:1:1]
 1 │ echo $nu.scope.aliases
   ·      ─┬─ ──┬──
   ·       │    ╰── cannot find column 'scope'
   ·       ╰── value originates here
   ╰────

/home/rne〉                                                                                                                                                                2023-08-15 20:04:44

내가 뭘 잘못했나요?

답변1

문서가 오래된 것 같습니다. 문서화되지 않은 별칭을 나열할 수 있습니다.

help aliases

그리고

scope aliases

주문하다.

또한보십시오:https://github.com/nushell/nushell/issues/9011#issuecomment-1679486217 그리고:https://github.com/nushell/nushell.github.io/pull/1006

위에 링크된 내 PR을 사용하여 오래된 문서가 업데이트되었습니다.

관련 정보