A place to share Nushell scripts with each other
Go to file
Daniel Mijares c544a92a40
export env is not in nushell (#529)
* `export env` is not in nushell
using `load-env` and `export-env` since we are `use`-ing  init.nu

* reformatted export-env part to move this along

---------

Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
2023-06-17 07:48:08 -05:00
.github Update CODEOWNERS after refactor (#466) 2023-04-26 07:51:03 -05:00
aliases Fix: remaining aliases (#495) 2023-05-16 08:56:31 -05:00
assets move assets so they're more accessible (#445) 2023-04-12 08:29:47 -05:00
before_v0.60 move assets so they're more accessible (#445) 2023-04-12 08:29:47 -05:00
benchmarks update sg.nu to print again (#456) 2023-04-21 14:24:17 -05:00
custom-completions Case insensitive and reformatted make completions (#515) 2023-05-26 16:00:23 -05:00
custom-menus FEATURE: add some fuzzy keybindings (#512) 2023-05-26 13:33:37 -05:00
example-config export env is not in nushell (#529) 2023-06-17 07:48:08 -05:00
hooks add a "command not found" hook (#526) 2023-06-08 21:17:54 -05:00
make_release REFACTOR: rewrite the release note scripts (#525) 2023-06-09 15:26:46 -05:00
modules Convenience wrapper for venv creation (#514) 2023-06-17 09:25:30 +02:00
sourced Replace deprecated hash base64 with decode (#531) 2023-06-15 06:14:41 -05:00
themes add screenshot link 2023-06-12 12:03:56 -05:00
.gitignore update gitignore (#270) 2022-07-30 08:04:58 -05:00
LICENSE Initial commit 2021-01-23 07:33:45 +13:00
package.nuon add a package file in NUON (#503) 2023-05-17 17:35:45 -05:00
README.md fix navigation links (#467) 2023-04-26 18:38:06 -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.