A place to share Nushell scripts with each other
Go to file
2022-10-23 20:23:20 -05:00
api_wrappers Ported my scripts to 0.60 (#189) 2022-03-25 07:49:01 +13:00
aws Create select-aws-profile.nu (#262) 2022-07-08 07:53:27 -05:00
background_task add background feature (#298) 2022-09-23 18:35:13 -05:00
base16 Migrate some scripts to fit new variable and arguments naming style (#268) 2022-08-05 10:47:18 +03:00
before_v0.60 port git_gone to 0.60 era syntax (#170) 2022-03-02 12:26:24 -06:00
benchmarks add turtle benchmark and reorganize (#259) 2022-06-28 07:37:25 -05:00
coloring feat: added coloring/hl.nu, a highlighting module (#299) 2022-09-27 06:07:13 -05:00
cool-oneliners Create pwd-short.nu (#235) 2022-05-29 15:13:56 -05:00
custom-completions New custom completions for ani-cli, btm, glow & tealdeer (#304) 2022-10-09 17:56:50 -05:00
data_extraction Update old question mark commands any?/all?/empty? to any/all/is-empty (#287) 2022-09-05 16:43:01 +02:00
direnv Update direnv example to run in pre_prompt rather than env_change (#276) 2022-08-16 08:06:25 -05:00
example-config Migrate some scripts to fit new variable and arguments naming style (#268) 2022-08-05 10:47:18 +03:00
filesystem Unspanned error (#267) 2022-07-28 11:07:02 +03:00
fun Update website_builder.nu 2022-04-08 08:50:02 +12:00
github Added delete-merged-branches.nu (#255) 2022-06-23 06:32:11 -05:00
gitlab Update old question mark commands any?/all?/empty? to any/all/is-empty (#287) 2022-09-05 16:43:01 +02:00
helpers add update-path.nu (#303) 2022-10-08 13:42:17 -05:00
make_release Update old question mark commands any?/all?/empty? to any/all/is-empty (#287) 2022-09-05 16:43:01 +02:00
maths Update old question mark commands any?/all?/empty? to any/all/is-empty (#287) 2022-09-05 16:43:01 +02:00
miscelaneous Update old question mark commands any?/all?/empty? to any/all/is-empty (#287) 2022-09-05 16:43:01 +02:00
network sockets command (#306) 2022-10-17 14:44:55 -07:00
nu_101 space between the def name and the left bracket 2022-03-20 17:53:48 -07:00
progress_bar tweak no back progress bar example (#308) 2022-10-23 20:23:20 -05:00
prompt Replace str collect with str join in panache-git (#301) 2022-09-29 07:38:35 -05:00
rbenv Update rbenv.nu (#300) 2022-09-28 13:38:53 -05:00
strings Added German diacritics (#284) 2022-08-27 06:06:02 -05:00
themes add a collection of colorschemes for nushell (#286) 2022-09-07 13:48:28 -05:00
virtual_environments fix conda deactivate error when activate with no-prompt (#307) 2022-10-22 18:37:26 +03:00
weather update get_weather to use the new error make (#261) 2022-07-02 09:42:56 -05:00
webscraping added webscrapping script for twitter (#279) 2022-08-20 07:22:46 -05:00
.gitignore update gitignore (#270) 2022-07-30 08:04:58 -05:00
fehbg.nu Migrate some scripts to fit new variable and arguments naming style (#268) 2022-08-05 10:47:18 +03:00
LICENSE Initial commit 2021-01-23 07:33:45 +13:00
README.md reorganize site in preparation for beta and releaes (#161) 2022-02-25 13:10:38 -06:00

Nushell Scripts

This is a place to share Nushell scripts with each other. If you'd like to share your scripts, create a PR that adds it to the repo.

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.