A place to share Nushell scripts with each other
Go to file
Tilen Gimpelj 9598815911
Added Wordle game (#403)
* initial commit

* wordle game
2023-03-11 09:45:02 -06:00
aliases/git adding git aliases (#337) 2023-01-16 08:15:18 -06: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 job.nu: update view source usage (#392) 2023-02-23 09:28:56 -06: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 update scripts that use benchmark to timeit command (#397) 2023-03-02 16:05:27 -06:00
coloring update str lpad str rpad to fill (#396) 2023-03-02 15:54:42 -06:00
cool-oneliners Fix dict and cdpath for 0.73 (#333) 2022-12-25 14:23:54 -06:00
custom-completions Make commands optional (#398) 2023-03-05 14:45:19 -06: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 K8s (#347) 2023-01-16 06:53:48 -06:00
example-config Migrate some scripts to fit new variable and arguments naming style (#268) 2022-08-05 10:47:18 +03: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 update str lpad str rpad to fill (#396) 2023-03-02 15:54:42 -06:00
fun Added Wordle game (#403) 2023-03-11 09:45:02 -06:00
git K8s (#347) 2023-01-16 06:53:48 -06: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 Updateed the temp.nu for 0.60.0+ (#377) 2023-02-13 09:29:22 -06:00
just ssh kubernetes docker git just nvim (#327) 2023-01-15 17:54:10 -06:00
kubernetes FIX kubernetes.nu since str lpad and str rpad are deprecated (#394) 2023-02-27 19:34:14 -08:00
make_release updates for new dfr names (#389) 2023-02-22 12:54:55 -06:00
maths FIX: the math functions can not be used (#381) 2023-02-18 13:19:55 -06:00
misc rename misc (#388) 2023-02-22 08:07:58 -06:00
network sockets command (#306) 2022-10-17 14:44:55 -07:00
nu_101 Switch to 'and' and 'or' (#322) 2022-12-08 12:52:10 +13:00
nvim K8s (#347) 2023-01-16 06:53:48 -06:00
progress_bar update str lpad str rpad to fill (#396) 2023-03-02 15:54:42 -06:00
prompt update str lpad str rpad to fill (#396) 2023-03-02 15:54:42 -06:00
rbenv Update rbenv.nu (#300) 2022-09-28 13:38:53 -05:00
ssh update str lpad str rpad to fill (#396) 2023-03-02 15:54:42 -06:00
strings Added German diacritics (#284) 2022-08-27 06:06:02 -05:00
themes Update README.md (#372) 2023-02-03 06:25:50 -06:00
virtual_environments conda activate base if env_name not given (#400) 2023-03-09 08:02:14 -06: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.