Closed3
Nushellについて
Introductionで遊んでたんだけどsys
コマンドがエラーになってしまう
> sys
error: Command not found
┌─ shell:17:1
│
17 │ sys
│ ^^^ command not found
環境情報
- OS: Windows10
- shell: Nushell
- version: 0.26.0
- install方法: scoop
考えたこと
- コマンド消えた?
- リリースblogのとこ見たけど消したわけではなさそう?
version コマンド
文字とおりNushellのバージョン情報を表示してくれる。
pivot表示する
> version | pivot
────┬────────────────────┬─────────────────────────────────────────────────────────────────────────────────────────
# │ Column0 │ Column1
────┼────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────
0 │ version │ 0.26.0
1 │ short_commit │ 388973e9
2 │ commit_hash │ 388973e9abcdd976eb82f8739d67065011701f0e
3 │ commit_date │ 2021-01-26 10:07:08
4 │ build_os │ windows-x86_64
5 │ rust_version │ rustc 1.49.0 (e1884a8e3 2020-12-29)
6 │ rust_channel │ stable-x86_64-pc-windows-msvc (default)
7 │ cargo_version │ cargo 1.49.0 (d00d64df9 2020-12-05)
8 │ pkg_version │ 0.26.0
9 │ build_time │ 2021-01-26 17:38:11
10 │ build_rust_channel │ release
11 │ features │ clipboard-cli, ctrlc, default, directories, dirs, ichwh, ptree, rustyline, term, trash,
│ │ uuid, which, zip
selectで表示するカラムを選ぶ
> version | select version build_os rust_version cargo_version
───┬─────────┬────────────────┬─────────────────────────────────────┬─────────────────────────────────────
# │ version │ build_os │ rust_version │ cargo_version
───┼─────────┼────────────────┼─────────────────────────────────────┼─────────────────────────────────────
0 │ 0.26.0 │ windows-x86_64 │ rustc 1.49.0 (e1884a8e3 2020-12-29) │ cargo 1.49.0 (d00d64df9 2020-12-05)
───┴─────────┴────────────────┴─────────────────────────────────────┴─────────────────────────────────────
このスクラップは2021/10/20にクローズされました