Shell concepts
Table of Contents
- [C] Why Create a New Unix Shell? shell
- [C] Ambitions for a Unix Shell | Hacker News shell
- shellsqlite comparing databases
- TODO [C] Seven God-Like Bash History Shortcuts You Will Actually Use | Lobsters shell
- shell The first two statements of your BASH script should be…
- [C] Nushell | A new type of shell. shellmalleable
- shellmalleable about | Nushell
¶[C] Why Create a New Unix Shell? shell
¶[C] Ambitions for a Unix Shell | Hacker News shell
https://news.ycombinator.com/item?id=22150603
Thanks for the support! Since I may not get to those blog posts in a timely fashion, here's a little outline (and maybe this comment will form the seed of them)
¶ comparing databases shellsqlite
One possibility is to use the sqlite3 command line client to export both databases and then diff the output. For example,
sqlite3 first.sqlite .dump >first.dump sqlite3 second.sqlite .dump >second.dump diff first.dump second.dump
¶TODO [C] Seven God-Like Bash History Shortcuts You Will Actually Use | Lobsters shell
¶ The first two statements of your BASH script should be… shell
#!/usr/bin/env bash set -euo pipefail The first statement is a Mac, GNU/Linux, and BSD portable way of finding the location of the bash interpreter. The second statement combines
¶[C] Nushell | A new type of shell. shellmalleable
¶ about | Nushell shellmalleable
dditionally, commands can output structured data (you can think of this as a third kind of stream). Commands that work in the pipeline fit into one of three categories: