https://github.com/nushell/nu_scripts
A place to share Nushell scripts with each other
https://github.com/nushell/nu_scripts
Last synced: 16 days ago
JSON representation
A place to share Nushell scripts with each other
- Host: GitHub
- URL: https://github.com/nushell/nu_scripts
- Owner: nushell
- License: mit
- Created: 2021-01-22T18:33:43.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2026-01-23T20:18:19.000Z (20 days ago)
- Last Synced: 2026-01-24T05:53:49.583Z (19 days ago)
- Language: Nushell
- Size: 220 MB
- Stars: 1,166
- Watchers: 17
- Forks: 304
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nushell Scripts
This is a place to share Nushell scripts with each other. If you'd like to share your scripts, fork this repository, and [create a PR](https://github.com/nushell/nu_scripts/compare) that adds it to the repo.
## Sections
- [aliases](./aliases/)
- [benchmarks](./benchmarks/)
- [cool-oneliners](./sourced/cool-oneliners/)
- [custom-completions](./custom-completions/) - collection of custom completions for external commands.
- [custom-menus](./custom-menus/) - collection of custom nushell menus
- [example-config](./example-config/)
- [nu-hooks](./nu-hooks/)
- [modules](./modules/) - This has its dedicated [readme](./modules/README.md)
- [nu_101](./sourced/nu_101/) - Beginner introduction to nushell concepts.
- [prompt](./modules/prompt/)
- [themes](./themes/)
## Running Scripts
You can run nushell scripts in a few different ways.
1. You can type `nu `.
2. From with nushell, you can type `source <script name>` and if the script is just a bunch of commands it will run the script. If the script is a custom command it will load those custom commands into your current scope so you can run them like any other command.