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を使用して古い文書が更新されました。

おすすめ記事