Run a function after the given program (by PID)
Demo of various API wrappers:
make nushell "support" background task feature. see README
Base16 theme generator (for Linux, might work for other OS) see README
These scripts are used to demonstrate the ansi
command using ansi
coloring. This is mainly a demo area where we have taken typical bash
scripts and ported them to nushell scripts. It would be nice if all scripts here showed the "other" version of script and the ported nushell version. We can show "other" flavors of scripts by including them as comments in the nushell scripts or by naming the nushell script and the other script the same basename.
- Ultimate Extractor - Extract any compressed archive, UE will call the proper program under the hood 😎
An extensive example of a wrapper for docker operations, with nushell completions.
- bm - A Simple bookmarking module. It uses
XGD_DATA_HOME
to save bookmarks. - expand - expansion module that implements bashes brace expansion.
The expansion uses a list inside of braces seperated by
,
to expand into a list of multiple string variations like:
expand a/{b,c}/d{e,f,g}.nu{,on}
parses into:
╭────┬─────────────╮
│ 0 │ a/b/de.nu │
│ 1 │ a/c/de.nu │
│ 2 │ a/b/df.nu │
│ 3 │ a/c/df.nu │
│ 4 │ a/b/dg.nu │
│ 5 │ a/c/dg.nu │
│ 6 │ a/b/de.nuon │
│ 7 │ a/c/de.nuon │
│ 8 │ a/b/df.nuon │
│ 9 │ a/c/df.nuon │
│ 10 │ a/b/dg.nuon │
│ 11 │ a/c/dg.nuon │
╰────┴─────────────╯
Examples of input/output formatters:
- from-cpuinfo
- from-dmidecode
- to-ini
- remove-diacritics - Turns
Zażółć gęślą jaźń
intoZazolc gesla jazn
- spark - send an array into spark and get a sparkline out:
> let v = [2, 250, 670, 890, 2, 430, 11, 908, 123, 57] > spark $v ▁▂▆▇▁▄▁█▁▁
- website-builder - converts markdown into their equivalent html pages
- wordle - A Terminal Wordle game. The code is based on this gist, but slightly personalized.
- branch-protections - Do you have hundreds or thousands of GitHub repositories in your organization? Are you tired of manually managing their branch protection rules? Don't! Let nushell do it for you! see README
- merged-branches - Do your developers often forget to delete their branches after merging PRs? Are you tired of manually going into every repository and deleting them? Don't! Let nushell do it for you! see README
Search files on your GitLab server
???
???
- [math_functions] - module with the following commands:
root
- root with a custom denominatorcroot
- cube rootaroot
- root with a custom scaler and denominatordelta
- calculate the delta of the quadratic functionfact
- factorial of the given numberq_roots
- calculare roots of the quadratic function: ax^2+bx+xisprime
- check if integer is primeprimelist
- list primes until given numbermtable
- multiplication table of n till maxisleap
- check if year is leapgcd
- greatest common divisor between 2 integerslcm
- least commoin multiple between 2 integersdec2base
- decimal number to custom base representationscale-minmax
- scale list to[a,b]
intervalscale-minmax-table
- Scale every column of a table (separately) to[a,b]
intervalmath exp
- exp function
-
remoting - This module provide convenient way to manage multiple remote clients. see README
-
sockets - The
sockets
command returns a table containing information on network sockets and the processes they belong to. It is basically a join of the tables produced by thelsof
command, and the nushellps
command. -
ssh wrapper that provides the following commands:
ssh
scp
ssh-list
parse-ssh-file
str max-length
ensure-index
??? (not sure how universal this is) Mix of hooks, defs and alias wrapper around neovim.
??? (make a module out of these scripts?) - Collection of progress bars
??? (not sure how universal this is) This script provides minimal working rbenv setup.
The scripts in this directory activate virtual environments for Conda environments.
These scripts should be used to demonstrate how get your local weather and/or weather forecasts.
Simple scripts to demonstrate how to scrape websites in nushell. Requires query web
plugin