Skip to content

Commit 66ba9be

Browse files
author
Jonathan Turner
authored
Merge pull request #120 from mvolkmann/master
modified README.md and table_of_contents.md to match
2 parents 01a802e + 142aea0 commit 66ba9be

File tree

2 files changed

+52
-47
lines changed

2 files changed

+52
-47
lines changed

book/README.md

+26-25
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
# Table of Contents
22

3-
* [Installation](installation.md) - Installing nushell
4-
* [Introduction](introduction.md) - Getting started
5-
* [Moving around](moving_around.md) - Moving around in nushell
6-
* [Types of data](types_of_data.md) - Types of data in nushell
7-
* [Loading data](loading_data.md) - Loading data and using it
8-
* [Working with tables](working_with_tables.md) - Working with nushell tables
9-
* [Pipeline](pipeline.md) - How the pipeline works
10-
* [Configuration](configuration.md) - How to configure nushell
11-
* [Custom commands](custom_commands.md) - Creating your own commands
12-
* [Aliases](aliases.md) - How to alias commands
13-
* [Operators](operators.md) - Operators supported by nushell
14-
* [Math](math.md) - Math operations in nushell
15-
* [Variables and invocations](variables_and_invocations.md) - Variables and invocations
16-
* [Environment](environment.md) - Working with environment variables
17-
* [Scripts](scripts.md) - Creating your own scripts
18-
* [Metadata](metadata.md) - An explanation of nushell's metadata system
19-
* [Shells](shells_in_shells.md) - Working with multiple locations
20-
* [Escaping commands](escaping.md) - Escaping to native commands of the same name
21-
* [Plugins](plugins.md) - Enhancing nushell with more features using plugins
22-
* [Coming from Bash](coming_from_bash.md) - Guide for those coming to nushell from bash
23-
* [Nushell map from shells/DSL](nushell_map.md) - A guide to help understand how nushell compares with SQL, Linq, PowerShell and Bash. Contributions welcome.
24-
* [Nushell map from imperative languages](nushell_map_imperative.md) - A guide to help understand how nushell compares with Python, Kotlin, C++, C# and Rust. Contributions welcome.
25-
* [Nushell map from functional languages](nushell_map_functional.md) - A guide to help understand how nushell compares with Clojure, Tablecloth (Ocaml / Elm) and Haskell. Contributions welcome.
26-
* [Nushell operator map](nushell_operator_map.md) - A guide to help understand operators.
27-
* [Command Reference](command_reference.md) - A list of all Nushell's commands.
3+
- [Installation](installation.md) - Installing nushell
4+
- [Introduction](introduction.md) - Getting started
5+
- [Moving around](moving_around.md) - Moving around in nushell
6+
- [Types of data](types_of_data.md) - Types of data in nushell
7+
- [Loading data](loading_data.md) - Loading data and using it
8+
- [Working with lists](working_with_lists.md) - Working with Nu lists
9+
- [Working with tables](working_with_tables.md) - Working with Nu tables
10+
- [Pipeline](pipeline.md) - How the pipeline works
11+
- [Configuration](configuration.md) - How to configure nushell
12+
- [Custom commands](custom_commands.md) - Creating your own commands
13+
- [Aliases](aliases.md) - How to alias commands
14+
- [Operators](operators.md) - Operators supported by nushell
15+
- [Math](math.md) - Math operations in nushell
16+
- [Variables and invocations](variables_and_invocations.md) - Variables and invocations
17+
- [Environment](environment.md) - Working with environment variables
18+
- [Scripts](scripts.md) - Creating your own scripts
19+
- [Metadata](metadata.md) - An explanation of Nu's metadata system
20+
- [Shells](shells_in_shells.md) - Working with multiple locations
21+
- [Escaping commands](escaping.md) - Escaping to native commands of the same name
22+
- [Plugins](plugins.md) - Enhancing nushell with more features using plugins
23+
- [Coming from Bash](coming_from_bash.md) - Guide for those coming to nushell from Bash
24+
- [Nushell map from shells/DSL](nushell_map.md) - Guide to show how nushell compares with SQL, Linq, PowerShell, and Bash
25+
- [Nushell map from imperative languages](nushell_map_imperative.md) - Guide to show how nushell compares with Python, Kotlin, C++, C#, and Rust
26+
- [Nushell map from functional languages](nushell_map_functional.md) - Guide to show how nushell compares with Clojure, Tablecloth (Ocaml / Elm) and Haskell
27+
- [Nushell operator map](nushell_operator_map.md) - Guide to show how nushell operators compare with those in general purpose programming languages
28+
- [Command Reference](command_reference.md) - List of all Nushell's commands

book/table_of_contents.md

+26-22
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
# Table of Contents
22

3-
* [Installation](installation.md) - Installing Nu
4-
* [Introduction](introduction.md) - Getting started
5-
* [Moving around](moving_around.md) - Moving around in Nu
6-
* [Types of data](types_of_data.md) - Types of data in Nu
7-
* [Loading data](loading_data.md) - Loading data and using it
8-
* [Working with lists](working_with_lists.md) - Working with Nu lists
9-
* [Working with tables](working_with_tables.md) - Working with Nu tables
10-
* [Pipeline](pipeline.md) - How the pipeline works
11-
* [Configuration](configuration.md) - How to configure Nu
12-
* [Aliases](aliases.md) - Aliases for blocks of commands
13-
* [Operators](operators.md) - Operators supported by nushell
14-
* [Math](math.md) - Math operations in Nu
15-
* [Environment](environment.md) - Working with environment variables
16-
* [Metadata](metadata.md) - An explanation of Nu's metadata system
17-
* [Shells](shells_in_shells.md) - Working with multiple locations
18-
* [Escaping commands](escaping.md) - Escaping to native commands of the same name
19-
* [Plugins](plugins.md) - Enhancing Nu with more features using plugins
20-
* [Coming from bash](coming_from_bash.md) - Guide for those coming to Nu from bash
21-
* [Nu map from shells/DSL](nushell_map.md) - Guide to show how Nu compares to SQL, Linq/C#, PowerShell and Bash
22-
* [Nu map from imperative languages](nushell_map_imperative.md) - Guide to show how Nu compares to Python, Kotlin, C++ and Rust
23-
* [Nu map from functional languages](nushell_map_functional.md) - Guide to show how Nu compares to Clojure, Tablecloth (Ocaml / Elm) and Haskell
24-
* [Nu operator map](nushell_operator_map.md) - Guide to show how Nu compares to operators in general purpose programming languages
3+
- [Installation](installation.md) - Installing nushell
4+
- [Introduction](introduction.md) - Getting started
5+
- [Moving around](moving_around.md) - Moving around in nushell
6+
- [Types of data](types_of_data.md) - Types of data in nushell
7+
- [Loading data](loading_data.md) - Loading data and using it
8+
- [Working with lists](working_with_lists.md) - Working with Nu lists
9+
- [Working with tables](working_with_tables.md) - Working with Nu tables
10+
- [Pipeline](pipeline.md) - How the pipeline works
11+
- [Configuration](configuration.md) - How to configure nushell
12+
- [Custom commands](custom_commands.md) - Creating your own commands
13+
- [Aliases](aliases.md) - How to alias commands
14+
- [Operators](operators.md) - Operators supported by nushell
15+
- [Math](math.md) - Math operations in nushell
16+
- [Variables and invocations](variables_and_invocations.md) - Variables and invocations
17+
- [Environment](environment.md) - Working with environment variables
18+
- [Scripts](scripts.md) - Creating your own scripts
19+
- [Metadata](metadata.md) - An explanation of Nu's metadata system
20+
- [Shells](shells_in_shells.md) - Working with multiple locations
21+
- [Escaping commands](escaping.md) - Escaping to native commands of the same name
22+
- [Plugins](plugins.md) - Enhancing nushell with more features using plugins
23+
- [Coming from Bash](coming_from_bash.md) - Guide for those coming to nushell from Bash
24+
- [Nushell map from shells/DSL](nushell_map.md) - Guide to show how nushell compares with SQL, Linq, PowerShell, and Bash
25+
- [Nushell map from imperative languages](nushell_map_imperative.md) - Guide to show how nushell compares with Python, Kotlin, C++, C#, and Rust
26+
- [Nushell map from functional languages](nushell_map_functional.md) - Guide to show how nushell compares with Clojure, Tablecloth (Ocaml / Elm) and Haskell
27+
- [Nushell operator map](nushell_operator_map.md) - Guide to show how nushell operators compare with those in general purpose programming languages
28+
- [Command Reference](command_reference.md) - List of all Nushell's commands

0 commit comments

Comments
 (0)