Skip to content

eigenfunk/sql-in-the-shell

 
 

Repository files navigation

SQL in the Shell

Relationenalgebra auf der Kommandozeile - eine Marp Praesentation.

Zeigt wie klassische SQL-Operationen mit Unix-Tools umgesetzt werden koennen:

SQL Shell
SELECT * cat, awk '{print}'
SELECT col1, col2 awk '{print $1, $2}'
WHERE grep, awk '{if ...}'
UNION cat file1 file2 | sort | uniq
EXCEPT comm -23
FROM R, S cartesian.sh

Entwicklung

npm install
npm start          # Live-Preview im Browser
npm run build      # Build nach dist/

Dateien

  • PITCHME.md - Hauptpraesentation
  • CheatSheet.md - Kurzreferenz SQL → Shell
  • work/ - Beispieldaten und Skripte

Inspiration

Basiert auf SQL in the Shell von Matt Might.

Lizenz

WTFPL

About

SQL-in-the-shell

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • CSS 65.9%
  • Shell 23.7%
  • JavaScript 10.4%