DSC v3 Runbook & Cheatsheet Runbook + Reference · Microsoft DSC v3 · Windows Config Mgmt DSC v3 Runbook & Cheatsheet DSC v3 is a ground-up rewrite: a standalo…
shell/
Bash (Bourne-again Shell) is a command-line shell/programming language by the GNU Project. Its name alludes to its predecessor, the long-deprecated Bourne shell. Bash can be run on…
A handy PowerShell script to get a comprehensive overview of your system's health, including errors, reboots, and updates. What it does: This script generates a detailed report of…
A simple guide to resolve common Perl module problems during package updates in Gentoo. What it does: These commands help rebuild all Perl modules after a Perl update or when you e…
The cdspell option in Bash is a helpful feature that automatically corrects minor typing mistakes in directory names when using the cd command. This guide explains how to enable an…
How to generate random ascii art in shell: wget -qO - http://www.asciiartfarts.com/random.cgi | sed -n '/<pre>/,/<\/pre>/p' | sed -n '/<table*/,/<\/table>/p' |…
With AWK: awk '{ sub("\r$", ""); print }' windows.txt > unix.txt awk 'sub("$", "\r")' unix.txt > windows.txt With TR tr -d '\15\32' < winfile.txt > unixfile.txt  …
#Execute a command without saving it in the history HISTCONTROL=ignorespace ; export $HISTCONTROL
Recursively download website wget -r --no-parent --reject "index.html*" http://mysite.com/configs/.vim/
history -c && history -w