A place to share Nushell scripts with each other
Go to file
2023-04-07 15:08:02 -05:00
.github Update CODEOWNERS (#428) 2023-03-29 16:07:55 -05:00
after upgrade to nu 0.77 (#413) 2023-03-15 08:29:32 -05:00
aliases add exa aliases (#440) 2023-04-06 06:55:40 -05:00
api_wrappers replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
aws replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
background_task Fix docs typo in job.nu (#405) 2023-03-12 10:35:45 +01: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 Updateed the temp.nu for 0.60.0+ (#377) 2023-02-13 09:29:22 -06:00
benchmarks fix some quoting bugs that the lsp found (#441) 2023-04-07 15:08:02 -05:00
coloring replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
cool-oneliners replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
custom-completions replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
custom-menus add a current session history menu (#378) 2023-02-16 06:56:12 -06:00
data_extraction remove build-string, which is deprecated (#390) 2023-02-23 08:43:22 -06:00
direnv Update direnv example to run in pre_prompt rather than env_change (#276) 2022-08-16 08:06:25 -05:00
docker upgrade to 0.78: git, ssh, docker, kubernetes (#438) 2023-04-06 08:01:03 +02:00
example-config replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
filesystem make up.nu much simpler (#391) 2023-02-23 08:53:55 -06:00
formats Add parsers for cpuinfo and dmidecode (#393) 2023-02-27 12:22:23 -06:00
formatting replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
fun replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
git upgrade to 0.78: git, ssh, docker, kubernetes (#438) 2023-04-06 08:01:03 +02:00
github Added delete-merged-branches.nu (#255) 2022-06-23 06:32:11 -05:00
gitlab replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
helpers replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
just add parameters default value to just's completion and j for shortcut (#435) 2023-04-03 14:26:59 -05:00
kubernetes upgrade to 0.78: git, ssh, docker, kubernetes (#438) 2023-04-06 08:01:03 +02:00
make_release replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
maths replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
misc replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
network replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
nu_101 Replace deprecated str collect command (#410) 2023-03-12 17:17:33 -05:00
nvim upgrade to nu 0.77 (#413) 2023-03-15 08:29:32 -05:00
progress_bar update str lpad str rpad to fill (#396) 2023-03-02 15:54:42 -06:00
prompt fix some quoting bugs that the lsp found (#441) 2023-04-07 15:08:02 -05:00
rbenv Update rbenv.nu (#300) 2022-09-28 13:38:53 -05:00
ssh upgrade to 0.78: git, ssh, docker, kubernetes (#438) 2023-04-06 08:01:03 +02:00
strings replace occurences of str collect with str join (#436) 2023-04-03 08:47:25 -05:00
themes rewrite the theme generation (#437) 2023-04-05 12:52:15 -05:00
virtual_environments Support unnamed conda envs (#439) 2023-04-06 12:39:15 +01:00
weather update scripts from fetch to http get (#373) 2023-02-10 16:37:07 -06: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 Switch to 'and' and 'or' (#322) 2022-12-08 12:52:10 +13: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.