KNOWLEDGE NOTEBOOK

Linux

Things I learned during my joyful ride...

I'd like to mention that I'm using Coddy to remind myself most of the commands I haven't been using for ages.

About these notes

This is a growing collection of things I've learned while working with Linux, servers, command-line tools, Git, SSH and everything in between.

These are not intended to be a comprehensive manual. They are reminders of things that I have actually needed, tried, broken, fixed, and understood.

A small example

One of the things I like about the command line is how small commands can be combined into useful workflows.

find . -type f -name "*.html" | sort | head

See Finding things for more examples.