All Posts
447 posts

m4: Process macros in a file
m4 is a macro processor. Process macros in a file: m4 path/to/file Define a macro before processing files: m4 [-D|--define] macro_name=macro_value path/to/file More information: …

ldc: D compiler using LLVM as a backend
ldc is a D compiler using LLVM as a backend. Compile a source code file into an executable binary: ldc2 path/to/source.d -of=path/to/output_executable Compile the source code file without linking: …

ld: link object files together
ld is a command-line program to link object files together. Link a specific object file with no dependencies into an executable: ld path/to/file.o --output path/to/output_executable Link two object …

lazygit: TUI for managing Git repositories, branches, and more
lazygit is a simple terminal UI for Git commands, providing an intuitive interface for managing repositories. Open Lazygit in the current repository: lazygit Open Lazygit for a specific Git …

lazydocker: TUI for managing docker containers, images, volumes, and more
lazydocker is a terminal UI for managing Docker containers, images, volumes, and more. Open Lazydocker: lazydocker Display the current default configuration: lazydocker --config Run Lazydocker in …

laydown: prepare for Daily Standup
laydown is a command line application to prepare for Daily Standup. Add an item to DID section: laydown did item Add an item to DOING section: laydown doing item Clear all items: laydown clear Use an …

latexpand: simplify LaTeX source files
latexpand is a command-line program to simplify LaTeX source files by removing comments and resolving \includes, \inputs, etc. Simplify the specified source file and save the result to the specified …

Latexmk: compile LaTeX source files into finished documents
latexmk is a command-line program to compile LaTeX source files into finished documents. Automatically does multiple runs when needed. Compile a DVI (Device Independent file) document from every …

latexdiff: determine differences between two LaTeX files
latexdiff is a command-line program to determine differences between two LaTeX files. Determine changes between different versions of a LaTeX file (the resulting LaTeX file can be compiled to show …

compile a DVI document from LaTeX source files | Latex CLI cheat-sheet
latex is a command-line program to compile a DVI document from LaTeX source files. Compile a DVI document: latex source.tex Compile a DVI document, specifying an output directory: latex …