1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-07-29 13:17:44 +00:00
No description
Find a file
Sandyandi N. dela Cruz ba9a4c1cac
Enhance gwta (#1143)
Allow automatic association to an existing branch or creation of new
branch with `gwta` when 2nd positional parameter (`branch`) is omitted.
2025-07-17 06:53:13 -05:00
.github/workflows Fix failing lints on source files (#1049) 2025-02-17 09:14:30 -05:00
aliases Enhance gwta (#1143) 2025-07-17 06:53:13 -05:00
assets use typos for corrections (#833) 2024-05-08 06:47:54 -05:00
benchmarks Add recursive fibonacci benchmark (#924) 2024-07-28 07:15:55 -05:00
custom-completions Fix custom completion for pass by converting the path pattern string to glob (#1141) 2025-07-03 03:51:53 -05:00
custom-menus in commands table rename usage to description (#990) 2024-12-08 07:27:33 -06:00
example-config use typos for corrections (#833) 2024-05-08 06:47:54 -05:00
games Add Game Demo: nu-niversal paperclips (#1108) 2025-05-01 15:31:25 -05:00
make_release Update cargo hack command for making a release (#1132) 2025-06-10 21:13:44 +02:00
modules fix: pause in background_task (#1138) 2025-06-29 13:07:57 -05:00
needs-update fishgen: Fix flags crossing subcommands (#1122) 2025-05-11 16:33:28 -05:00
nu-hooks Fixed rusty-paths.nu entering into rust folder (#1115) 2025-05-05 07:33:58 -05:00
sourced fix: url encoding (#1142) 2025-07-08 06:40:09 -05:00
stdlib-candidate-archive replace filter with where (#1135) 2025-06-12 06:42:16 -05:00
themes fix Tokyonight Moon theme color (#1125) 2025-05-22 11:09:50 -05:00
.gitattributes Add Nushell Language detect for linguist (#532) 2023-06-21 11:36:01 +03:00
.gitignore Add Game Demo: nu-niversal paperclips (#1108) 2025-05-01 15:31:25 -05:00
LICENSE Initial commit 2021-01-23 07:33:45 +13:00
README.md Remove the failing CI on the main branch (#805) 2024-03-30 16:37:19 -05:00
toolkit.nu Fix failing lints on source files (#1049) 2025-02-17 09:14:30 -05:00
typos.toml use typos for corrections (#833) 2024-05-08 06:47:54 -05:00

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 that adds it to the repo.

Sections

Running Scripts

You can run nushell scripts in a few different ways.

  1. You can type nu <script name>.
  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.