Bash terminal

Essential Bash Commands - File Management and System Analysis

Introduction In this tutorial, we’ll explore fundamental Bash commands that every developer should master. We’ll start with disk space analysis and expand to cover essential file operations. Disk Space Analysis Basic Command Here’s a useful command to list files by size: du -sh * | sort -h Command Breakdown du -sh *: du = disk usage -s = summary (total only for directories) -h = human-readable format (KB, MB, GB) * = all files/directories in current folder sort -h: sorts human-readable values numerically ...

September 25, 2025 · 4 min · 703 words · Manzolo

ZSH Installation and Configuration Guide (Debian/Ubuntu)

ZSH Installation and Configuration Guide (Debian/Ubuntu) Introduction ZSH (Z Shell) is a powerful, customizable shell designed for interactive use and scripting, offering enhanced features over Bash, such as advanced autocompletion, themes, and plugins. This guide explains how to install ZSH, set up Oh My Zsh (a popular framework for managing ZSH configurations), and configure the Powerlevel10k theme with plugins like syntax highlighting and autosuggestions on Debian/Ubuntu systems. It provides a streamlined setup for a modern, user-friendly shell experience. ...

October 4, 2025 · 4 min · 839 words · Manzolo