Tagged articles
401 articles
Page 3 of 5
Open Source Linux
Open Source Linux
Sep 27, 2021 · Fundamentals

Mastering the unalias Command: How to Remove Shell Aliases Quickly

This guide explains how to use the built‑in unalias command in Bash to delete individual or all command aliases, shows the syntax and common options, provides practical examples, and highlights important considerations when running scripts that modify alias settings.

AliasBashcommand-line
0 likes · 2 min read
Mastering the unalias Command: How to Remove Shell Aliases Quickly
Open Source Linux
Open Source Linux
Sep 23, 2021 · Operations

Mastering Linux printf: Formatting and Data Output Techniques

Learn how the Linux printf command mimics C's printf function to format and output text, understand its syntax and options, and explore practical examples ranging from simple string printing to complex formatted tables using format specifiers and custom scripts.

Linuxcommand-lineformatting
0 likes · 4 min read
Mastering Linux printf: Formatting and Data Output Techniques
Open Source Linux
Open Source Linux
Sep 21, 2021 · Operations

Mastering lspci: List and Inspect All PCI Devices on Linux

This guide explains how to use the lspci command to display all PCI bus information, interpret its common options, and provides practical examples for listing devices, showing detailed info, and filtering by vendor, class, or connection type.

HardwarePCIcommand-line
0 likes · 3 min read
Mastering lspci: List and Inspect All PCI Devices on Linux
Liangxu Linux
Liangxu Linux
Sep 12, 2021 · Fundamentals

Boost Your Productivity with Must‑Use Open‑Source Terminal Tools

This guide curates essential open‑source terminal utilities—including Windows Terminal, iTerm2, oh‑my‑zsh, powerline, file managers, vim enhancements, and command‑line helpers like exa, fd, bat, fzf, tldr, The Fuck, and w3m—explaining their key features and where to obtain them, helping developers feel like 10× programmers.

command-linedeveloperopen-source
0 likes · 9 min read
Boost Your Productivity with Must‑Use Open‑Source Terminal Tools
MaGe Linux Operations
MaGe Linux Operations
Sep 12, 2021 · Operations

Boost Your Productivity with 15 Essential Command-Line Tools

This article introduces a curated collection of powerful command-line utilities—including faster search tools, interactive Git viewers, JSON processors, shell checkers, fuzzy finders, system monitors, multi-threaded downloaders, file transfer helpers, code counters, terminal multiplexers, session recorders, and multi‑log tailers—to streamline development and operations workflows on Linux.

Linuxcommand-lineproductivity
0 likes · 5 min read
Boost Your Productivity with 15 Essential Command-Line Tools
Python Programming Learning Circle
Python Programming Learning Circle
Sep 2, 2021 · Fundamentals

Five Beginner Python Projects: Rock‑Paper‑Scissors Game, Random Password Generator, Dice Simulator, Automatic Email Sender, and Alarm Clock

This article presents five beginner-friendly Python projects— a command‑line Rock‑Paper‑Scissors game, a random password generator, a dice‑rolling simulator, an automatic email sender, and an alarm clock—each with clear objectives, implementation tips, and complete source code examples.

BeginnerProjectsPython
0 likes · 7 min read
Five Beginner Python Projects: Rock‑Paper‑Scissors Game, Random Password Generator, Dice Simulator, Automatic Email Sender, and Alarm Clock
Liangxu Linux
Liangxu Linux
Aug 24, 2021 · Operations

Mastering findmnt: List and Monitor Linux Mounted Filesystems

This guide explains how to use the Linux findmnt command—including installation, default listing, real‑time monitoring, df‑style output, list format, fstab parsing, label evaluation, and filesystem‑type filtering—providing practical examples and command syntax for system administrators.

FilesystemLinuxSystem Administration
0 likes · 5 min read
Mastering findmnt: List and Monitor Linux Mounted Filesystems
Top Architect
Top Architect
Jul 20, 2021 · Operations

Docker Command Cheat Sheet: Managing Containers, Images, and Operations

This guide provides a comprehensive collection of Docker commands for inspecting Docker versions, handling images (listing, searching, pulling, deleting, building), and managing containers (starting, stopping, logging, attaching, executing, committing, and copying files), offering a practical reference for developers and operations engineers.

ContainerDockerImage
0 likes · 10 min read
Docker Command Cheat Sheet: Managing Containers, Images, and Operations
Liangxu Linux
Liangxu Linux
Jul 12, 2021 · Fundamentals

Turn Any Image into ASCII Art on Linux with Ascii Image Converter

This guide explains how to install the Go‑based Ascii Image Converter on Linux, use it to transform JPEG, PNG, BMP, WEBP, or TIFF files (or URLs) into monochrome or colored ASCII art, and customize output size, character sets, and saving options.

ASCII artGoLinux
0 likes · 5 min read
Turn Any Image into ASCII Art on Linux with Ascii Image Converter
Python Programming Learning Circle
Python Programming Learning Circle
Jul 7, 2021 · Frontend Development

Python Seat Reservation System with PySide2 GUI and Command‑Line Tools

This article presents a complete Python‑based seat reservation system that uses PySide2 to build an interactive graphical interface for selecting and booking seats, stores configuration and occupancy data in JSON files, and provides command‑line utilities for checking in, checking out, making reservations, and handling temporary leaves, illustrating both front‑end UI design and back‑end logic in a single project.

JSONPythonbooking
0 likes · 20 min read
Python Seat Reservation System with PySide2 GUI and Command‑Line Tools
macrozheng
macrozheng
Jul 7, 2021 · Operations

Query Linux Logs with SQL Using the ‘q’ Command-Line Tool

The article introduces the command‑line utility q, explains how to install it on Linux and Windows, and demonstrates using familiar SQLite‑style SQL queries to search, filter, join, and aggregate log files and command output, offering a convenient alternative to traditional shell tools.

Linuxcommand-linelog analysis
0 likes · 10 min read
Query Linux Logs with SQL Using the ‘q’ Command-Line Tool
Liangxu Linux
Liangxu Linux
Jun 23, 2021 · Operations

Query Linux Logs with SQL Using the ‘q’ Tool – A Practical Guide

This article introduces the command‑line utility q, explains how to install it on Linux and Windows, and demonstrates using full SQLite‑compatible SQL syntax to query, filter, join, and aggregate plain‑text log files, offering a database‑style alternative to traditional shell tools.

Linuxcommand-linelog analysis
0 likes · 10 min read
Query Linux Logs with SQL Using the ‘q’ Tool – A Practical Guide
Liangxu Linux
Liangxu Linux
Jun 14, 2021 · Operations

How to Split and Merge Large Files on Linux Using split and cat

This guide explains why large files often need to be divided for network transfer on Linux, and provides step‑by‑step commands and options for using the split utility to cut files into smaller pieces and the cat command to recombine them efficiently.

CATFile SplittingLinux
0 likes · 6 min read
How to Split and Merge Large Files on Linux Using split and cat
Liangxu Linux
Liangxu Linux
Jun 2, 2021 · Operations

How to Find Files by Timestamp Using the Linux find Command

This guide explains the three Unix file timestamps, shows how to view them with stat, and demonstrates using the find command’s ‑newerXY option to locate files modified, accessed, or status‑changed after a specific date and time.

File SearchLinuxUnix
0 likes · 5 min read
How to Find Files by Timestamp Using the Linux find Command
Liangxu Linux
Liangxu Linux
May 30, 2021 · Fundamentals

Mastering Shell Special Parameters: $*, $@, $#, $$, $! with Real Examples

This article explains the purpose and behavior of key shell special parameters—$*, $@, $#, $$, and $!—through three practical scripts that demonstrate expanding positional arguments, counting arguments, and accessing process IDs, complete with code snippets and expected output.

BashScriptingShell
0 likes · 4 min read
Mastering Shell Special Parameters: $*, $@, $#, $$, $! with Real Examples
Liangxu Linux
Liangxu Linux
Apr 26, 2021 · Operations

Master Linux Command History: 10 Powerful Tricks to Boost Efficiency

This guide explains how the Linux shell stores command history, how to view, search, repeat, and manage entries, and shows practical techniques—including timestamps, size limits, custom file names, and disabling history—to improve productivity and auditability.

LinuxSysadmincommand-line
0 likes · 9 min read
Master Linux Command History: 10 Powerful Tricks to Boost Efficiency
Liangxu Linux
Liangxu Linux
Apr 21, 2021 · Fundamentals

15 Essential Linux Command‑Line Tricks to Boost Your Productivity

This article presents a collection of fifteen practical Linux command‑line techniques—including fast file clearing, large file generation, secure disk wiping, process timing, log monitoring, timestamp conversion, and history shortcuts—to help users automate tasks and work more efficiently.

ShellUnix toolscommand-line
0 likes · 9 min read
15 Essential Linux Command‑Line Tricks to Boost Your Productivity
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Apr 20, 2021 · Operations

Practical Tips for Using the Linux History Command to Manage Command History

This article explains how to efficiently use the Linux history command, covering its underlying mechanism, basic usage, repeat execution, searching, interactive search, timestamp display, history size control, file name changes, disabling history, and a useful security tip, helping administrators improve productivity and auditability.

BashLinuxSysadmin
0 likes · 11 min read
Practical Tips for Using the Linux History Command to Manage Command History
Laravel Tech Community
Laravel Tech Community
Apr 18, 2021 · Backend Development

readline_clear_history() – Clear Command Line History in PHP

The PHP function readline_clear_history() removes the entire command line history, returning TRUE on success and FALSE on failure, providing a simple way to clear stored input lines during interactive sessions and can be used in scripts that require privacy of entered commands.

PHPcommand-linehistory
0 likes · 1 min read
readline_clear_history() – Clear Command Line History in PHP
Efficient Ops
Efficient Ops
Apr 11, 2021 · Operations

Essential Safety Checklist for Dangerous Linux Commands

This guide outlines critical precautions and best‑practice tips for executing risky Linux commands—such as rm, chmod, cat, dd, tar, and MySQL—by verifying environments, backing up data, using safe aliases, and avoiding common pitfalls that can cause catastrophic data loss.

BackupLinuxOperations
0 likes · 8 min read
Essential Safety Checklist for Dangerous Linux Commands
Laravel Tech Community
Laravel Tech Community
Apr 5, 2021 · Backend Development

PHP readline() Function: Reading a Line from User Input

This article explains the PHP readline() function, its purpose for reading a line of user input, the optional prompt parameter, return value details, and provides a complete example demonstrating reading commands, adding them to history, and displaying history and variable information.

command-linehistoryinput
0 likes · 2 min read
PHP readline() Function: Reading a Line from User Input
Efficient Ops
Efficient Ops
Mar 30, 2021 · Fundamentals

Mastering Awk: Powerful Text Processing for Linux with Real‑World Examples

This tutorial introduces awk as a versatile Linux text‑analysis tool, explains its execution model (BEGIN, body, END), demonstrates practical commands for reporting, filtering, formatting, and advanced scripting, and provides numerous code snippets and visual examples to help readers quickly apply awk in real‑world scenarios.

Scriptingawkcommand-line
0 likes · 12 min read
Mastering Awk: Powerful Text Processing for Linux with Real‑World Examples
Liangxu Linux
Liangxu Linux
Mar 8, 2021 · Fundamentals

18 Fun Linux Commands to Wow Your Terminal

This guide introduces eighteen entertaining Linux command‑line tools—ranging from the train‑displaying sl to the matrix‑style cmatrix—detailing their installation, usage options, and playful effects, while also offering tips for creative combinations and safety warnings.

Bashcommand-linefun
0 likes · 8 min read
18 Fun Linux Commands to Wow Your Terminal
Efficient Ops
Efficient Ops
Feb 25, 2021 · Operations

30 Fun Linux Commands to Wow Your Terminal and Prank Friends

This guide introduces a collection of entertaining Linux command‑line utilities—such as sl, fortune, cowsay, cmatrix, figlet, oneko, xeyes, yes, cal, shred, factor and more—providing installation steps, usage examples, options, and illustrative screenshots for each.

command-linefunterminal
0 likes · 8 min read
30 Fun Linux Commands to Wow Your Terminal and Prank Friends
Open Source Linux
Open Source Linux
Feb 25, 2021 · Operations

Master Disk Space Monitoring with duf: Install and Use Across Platforms

The article introduces duf, a Go‑based disk usage and free space viewer for Unix‑like systems, explains its features such as colored, resizable output, sorting and JSON mode, and provides step‑by‑step installation instructions for Debian/Ubuntu, RPM‑based distros, Arch AUR, Termux, macOS, FreeBSD, and Windows, plus usage examples and customization options.

LinuxWindowscommand-line
0 likes · 6 min read
Master Disk Space Monitoring with duf: Install and Use Across Platforms
Liangxu Linux
Liangxu Linux
Feb 12, 2021 · Fundamentals

Master Linux grep: 10 Practical Examples to Boost Your Text Searching Skills

This guide introduces the powerful Linux grep command, explains its regex-based searching capabilities, and walks through ten hands‑on examples—including filtering by keywords, context lines, line numbers, and exclusion—followed by a concise reference of the most useful grep options.

GrepLinuxcommand-line
0 likes · 5 min read
Master Linux grep: 10 Practical Examples to Boost Your Text Searching Skills
Liangxu Linux
Liangxu Linux
Feb 7, 2021 · Operations

Master Linux File Searches: Powerful find Command Examples and Tips

This guide shows Linux administrators how to use the versatile find command to locate files by name, type, size, modification time, permissions, and combined criteria, and demonstrates common actions such as listing, deleting, and executing commands on the results.

File SearchLinuxcommand-line
0 likes · 13 min read
Master Linux File Searches: Powerful find Command Examples and Tips
Programmer DD
Programmer DD
Nov 30, 2020 · Fundamentals

Master cheat.sh: Your Ultimate Command‑Line Cheat Sheet for 58 Languages

This article introduces cheat.sh, a lightweight command‑line cheat sheet that covers over 58 programming languages, numerous DBMS, and more than a thousand Unix/Linux commands, and explains how to query it with curl, use its CLI client, shell and stealth modes, and integrate it with popular editors.

LinuxcURLcheat.sh
0 likes · 8 min read
Master cheat.sh: Your Ultimate Command‑Line Cheat Sheet for 58 Languages
MaGe Linux Operations
MaGe Linux Operations
Nov 14, 2020 · Fundamentals

Master curl: Essential Command-Line Tricks for HTTP Requests

This guide provides a concise reference of curl’s most commonly used command-line options—including setting user agents, handling cookies, sending POST data, uploading files, managing redirects, limiting bandwidth, and debugging—offering developers a quick cheat‑sheet to replace graphical tools like Postman.

cURLcommand-linenetwork
0 likes · 11 min read
Master curl: Essential Command-Line Tricks for HTTP Requests
Programmer DD
Programmer DD
Nov 12, 2020 · Operations

Mastering jstat: How to Monitor JVM Performance with Command-Line Options

This guide explains how to use the jstat command-line tool to monitor Java Virtual Machine performance metrics such as garbage collection, memory usage, and compilation time, detailing its syntax, options, intervals, counts, and providing concrete examples with expected outputs.

GC statisticsJVM MonitoringJava performance
0 likes · 19 min read
Mastering jstat: How to Monitor JVM Performance with Command-Line Options
Liangxu Linux
Liangxu Linux
Nov 5, 2020 · Fundamentals

Master Linux File Permissions: A Complete Guide to Using chmod

This tutorial explains Linux file and directory permissions, the chmod command syntax, numeric and symbolic modes, and provides step‑by‑step examples—including recursive changes, reference files, and selective execution—so readers can confidently manage access rights on any Unix‑like system.

Sysadminchmodcommand-line
0 likes · 10 min read
Master Linux File Permissions: A Complete Guide to Using chmod
Programmer DD
Programmer DD
Nov 2, 2020 · Operations

10 Lesser-Known Linux Commands Every Sysadmin Should Master

This article introduces ten useful but often overlooked Linux commands—pgrep, pstree, bc, split, nl, mkfifo, ldd, col, xmlwf, and lsof—explaining their purpose, typical use cases, and providing concrete examples to help system administrators work more efficiently.

BashLinuxSysadmin
0 likes · 9 min read
10 Lesser-Known Linux Commands Every Sysadmin Should Master
Liangxu Linux
Liangxu Linux
Oct 31, 2020 · Operations

How to Install and Use Exa – A Colorful ls Replacement on Linux

This guide walks you through two methods for installing the Exa command‑line tool on various Linux distributions, explains required dependencies, shows step‑by‑step commands for binary and source installations, and demonstrates common usage options with practical examples.

InstallationLinuxRust
0 likes · 5 min read
How to Install and Use Exa – A Colorful ls Replacement on Linux
Liangxu Linux
Liangxu Linux
Oct 17, 2020 · Operations

5 Fun Command‑Line Tools to Refresh Your Coding Breaks

This article introduces five handy command‑line utilities—a Netty‑based Dou Dizhu game, a Go‑based novel reader, a Rust‑based GitHub trending viewer, a Python‑based Zhihu client, and a Bash Tetris game—each with installation steps, usage commands, and quick‑start tips for developers looking to unwind.

CLI toolsGameInstallation
0 likes · 8 min read
5 Fun Command‑Line Tools to Refresh Your Coding Breaks
Laravel Tech Community
Laravel Tech Community
Oct 9, 2020 · Operations

Comprehensive Linux Command Reference Guide

This guide presents an extensive collection of Linux commands covering file and directory operations, content viewing, compression, system information, networking, user management, permissions, process control, and system monitoring, each explained with its purpose and typical usage in clear English.

LinuxNetworkingSystem Administration
0 likes · 16 min read
Comprehensive Linux Command Reference Guide
MaGe Linux Operations
MaGe Linux Operations
Oct 4, 2020 · Operations

10 Essential Linux Sysadmin Hacks to Boost Efficiency

This article presents a collection of practical Linux system‑administration techniques—from unmounting a stuck DVD drive and resetting a frozen console to using screen sharing, SSH tunnels, VNC forwarding, bandwidth testing, and automated scripting—each designed to save time, improve troubleshooting speed, and increase overall operational productivity.

SysadminVNCcommand-line
0 likes · 18 min read
10 Essential Linux Sysadmin Hacks to Boost Efficiency
ITPUB
ITPUB
Sep 28, 2020 · Operations

Essential Linux Regex Commands for Quick System Queries

A concise collection of Linux command-line one‑liners demonstrates how to extract IPv4 addresses, disk usage, user information, permissions, and pattern matches using regular expressions and tools like ifconfig, df, cat, cut, sort, and egrep.

LinuxShell scriptingSystem Administration
0 likes · 5 min read
Essential Linux Regex Commands for Quick System Queries
ITPUB
ITPUB
Sep 20, 2020 · Fundamentals

Boost Your Development Efficiency with Essential Shell Commands

This article introduces a collection of essential Linux/macOS command‑line tools—such as find, grep, awk, sed, and others—explaining their key options and demonstrating practical examples like log analysis, database URL correction, and bulk file processing to dramatically improve everyday developer productivity.

Shellautomationcommand-line
0 likes · 18 min read
Boost Your Development Efficiency with Essential Shell Commands
Liangxu Linux
Liangxu Linux
Sep 6, 2020 · Fundamentals

Master Grep: Search Multiple Patterns Efficiently with One Command

This guide explains how to use the powerful grep command to search for multiple strings simultaneously, covering basic, extended, and Perl-compatible regular expressions, the OR operator syntax, case‑insensitive searches, whole‑word matching, and practical examples for log file analysis.

Grepcommand-linesearch
0 likes · 6 min read
Master Grep: Search Multiple Patterns Efficiently with One Command
Liangxu Linux
Liangxu Linux
Sep 6, 2020 · Fundamentals

Top 10 Linux Shell Interview Questions and Practical Answers

This article presents ten common Linux shell interview questions, providing clear explanations, command-line solutions, code examples, and step‑by‑step guidance on script termination, file header removal, line length checking, non‑printable character display, directory permissions, process states, cut, cmp vs diff, echo vs ls, and inode basics.

BashScriptingShell
0 likes · 8 min read
Top 10 Linux Shell Interview Questions and Practical Answers
ITPUB
ITPUB
Aug 13, 2020 · Operations

Mastering Linux ‘ps’: Essential Commands to Inspect and Filter Processes

This guide explains how the Linux ps command works, details its most useful options for listing, filtering, sorting, and formatting process information, and shows how to combine it with tools like watch, less, and pstree for real‑time and hierarchical views.

ShellSysadmincommand-line
0 likes · 8 min read
Mastering Linux ‘ps’: Essential Commands to Inspect and Filter Processes
Liangxu Linux
Liangxu Linux
Aug 11, 2020 · Fundamentals

Mastering Shell Parameters: From Positional Limits to Elegant Option Parsing

This guide explains the drawbacks of fixed positional parameters in shell scripts, demonstrates simple examples, and introduces the getopts utility to handle named options, optional arguments, and error suppression, enabling more flexible, readable, and maintainable command-line interfaces.

BashScriptingShell
0 likes · 5 min read
Mastering Shell Parameters: From Positional Limits to Elegant Option Parsing
MaGe Linux Operations
MaGe Linux Operations
Aug 9, 2020 · Operations

How to Install and Use Bashtop: The Ultimate Linux Resource Monitor

This guide explains what Bashtop is, its features, prerequisites, and provides step‑by‑step instructions for installing it on various Linux distributions (Ubuntu, Debian, Fedora, CentOS/RHEL, Arch) as well as macOS and FreeBSD, plus usage tips and configuration details.

BashtopResource Monitoringcommand-line
0 likes · 6 min read
How to Install and Use Bashtop: The Ultimate Linux Resource Monitor
Top Architect
Top Architect
Aug 9, 2020 · Fundamentals

Useful Linux Command-Line Tools: history, apropos, ZSH, and Cheat Sheets

This article introduces essential Linux command‑line utilities such as history, apropos, and ZSH, explains how to use them with practical examples, and suggests cheat‑sheet methods to help users efficiently recall and discover commands without memorizing every syntax.

Cheat Sheetaproposcommand-line
0 likes · 5 min read
Useful Linux Command-Line Tools: history, apropos, ZSH, and Cheat Sheets
Liangxu Linux
Liangxu Linux
Jul 19, 2020 · Operations

Top 6 Modern Linux Command‑Line Tools to Replace Classic Utilities

This article reviews six contemporary Linux command‑line utilities—ncdu, htop, tldr, jq, fd, and other alternatives—that improve usability, speed, and functionality compared with traditional tools like du, top, man, grep, and find, providing installation commands and usage examples.

Linuxcommand-linefd
0 likes · 11 min read
Top 6 Modern Linux Command‑Line Tools to Replace Classic Utilities
Liangxu Linux
Liangxu Linux
Jul 14, 2020 · Fundamentals

How to Install and Use ccat for Colorized cat Output on Linux

This guide explains why the standard cat command lacks syntax highlighting, introduces the ccat utility that adds colored output for many programming languages, and provides step‑by‑step installation instructions for Arch and other Linux distributions, along with practical usage examples and troubleshooting tips.

BashInstallationLinux
0 likes · 6 min read
How to Install and Use ccat for Colorized cat Output on Linux
Liangxu Linux
Liangxu Linux
Jul 12, 2020 · Fundamentals

Beyond ls: When and Why to Use dir and vdir on Linux

This article explains the differences between the common ls command and its lesser‑known counterparts dir and vdir, showing how each can list directory contents, handle hidden files, format output, and avoid performance pitfalls in scripts, while also covering color options and practical examples.

command-linedirfile management
0 likes · 5 min read
Beyond ls: When and Why to Use dir and vdir on Linux
Liangxu Linux
Liangxu Linux
Jul 9, 2020 · Operations

Essential Linux Commands with Real‑World Examples

This guide introduces ten useful Linux command‑line tools—including pgrep, pstree, bc, split, nl, mkfifo, ldd, col, xmlwf, and lsof—explaining their purpose, typical usage patterns, and providing concrete command‑line examples to help users manage processes, files, and system information efficiently.

ShellSysadmincommand-line
0 likes · 8 min read
Essential Linux Commands with Real‑World Examples
ITPUB
ITPUB
Jul 8, 2020 · Fundamentals

Top 10 Linux Shell Interview Questions with Ready‑to‑Use Answers

This article presents ten common Linux shell interview questions, each followed by clear explanations and exact command‑line solutions—including script termination, file header removal, line length checking, non‑printable character display, directory permissions, process states, cut usage, cmp vs diff, echo vs ls, and a brief overview of inodes.

ScriptingShellcommand-line
0 likes · 8 min read
Top 10 Linux Shell Interview Questions with Ready‑to‑Use Answers
21CTO
21CTO
Jun 17, 2020 · Operations

Boost Your Linux Productivity with the Howdoi Command-Line Q&A Tool

This article introduces the howdoi tool—a lightweight command‑line Q&A utility that lets Linux users ask natural‑language questions and instantly receive concise command tutorials, installation steps, flag options, and example usages, all sourced from AskUbuntu.

LinuxShellTutorial
0 likes · 6 min read
Boost Your Linux Productivity with the Howdoi Command-Line Q&A Tool
ITPUB
ITPUB
Jun 17, 2020 · Operations

Get Instant Linux Command Answers with the howdoi CLI Tool

This guide explains how to install the howdoi command‑line utility, use its natural‑language queries to retrieve Linux command tutorials, and leverage options for multiple answers, verbose output, and custom queries, all with a few simple shell commands.

CLILinuxTutorial
0 likes · 7 min read
Get Instant Linux Command Answers with the howdoi CLI Tool
Liangxu Linux
Liangxu Linux
Jun 16, 2020 · Operations

Master Linux File Search: find, locate, which, and whereis Explained

This guide introduces the essential Linux file‑search utilities—find, locate, which, and whereis—explaining their core syntax, speed trade‑offs, database dependencies, and useful options so you can quickly locate scripts, executables, source files, and manuals on any system.

command-linefile-searchfind
0 likes · 6 min read
Master Linux File Search: find, locate, which, and whereis Explained
ITPUB
ITPUB
Jun 8, 2020 · Fundamentals

Master grep: Powerful Regex Search Techniques for Linux

This guide explains how to use the Linux grep command with common options and regular‑expression patterns, providing step‑by‑step examples that demonstrate counting matches, case‑insensitive searches, inverse matches, anchoring, character classes, and quantifiers.

GrepLinuxShell
0 likes · 6 min read
Master grep: Powerful Regex Search Techniques for Linux
Liangxu Linux
Liangxu Linux
May 13, 2020 · Operations

Essential Linux Debugging Commands Every Developer Should Know

This guide introduces a collection of classic Linux debugging utilities—including file, ldd, ltrace, hexdump, strings, readelf, objdump, strace, nm, and gdb—explaining their purpose, typical usage, and providing concrete command‑line examples to help developers troubleshoot binaries and libraries efficiently.

command-linedebugginggdb
0 likes · 19 min read
Essential Linux Debugging Commands Every Developer Should Know
ITPUB
ITPUB
May 7, 2020 · Cloud Computing

How to Supercharge Baidu Cloud Downloads with BaiduPCS-Go and BaiduPCS-Web

This guide introduces BaiduPCS‑Go, a cross‑platform command‑line client for Baidu Cloud that bypasses speed limits, outlines its key features, shows how to download and run it on Windows, and also recommends the web‑based BaiduPCS‑Web alternative with installation steps and usage tips.

Baidu Cloudcommand-linecross‑platform
0 likes · 5 min read
How to Supercharge Baidu Cloud Downloads with BaiduPCS-Go and BaiduPCS-Web
ITPUB
ITPUB
Apr 17, 2020 · Fundamentals

7 Powerful Vim Tricks to Supercharge Your Coding Efficiency

Discover seven practical Vim techniques—including key remappings, efficient cursor navigation, Git integration, test automation, and powerful substitution commands—that help both beginners and seasoned users boost productivity and streamline their development workflow.

command-lineeditorproductivity
0 likes · 7 min read
7 Powerful Vim Tricks to Supercharge Your Coding Efficiency
Open Source Linux
Open Source Linux
Apr 11, 2020 · Operations

Essential Docker Commands Every Developer Should Know

This article provides a concise cheat‑sheet of common Docker commands—including image management, container lifecycle, networking, resource limits, and registry operations—explaining each option and showing practical usage examples for developers and DevOps engineers.

command-line
0 likes · 7 min read
Essential Docker Commands Every Developer Should Know
Java Backend Technology
Java Backend Technology
Apr 9, 2020 · Operations

11 Must‑Know Linux Terminal Tricks to Boost Your Productivity

This article presents eleven practical Linux terminal techniques—including essential keyboard shortcuts, sudo shortcuts, background job handling, nohup, at scheduling, man page tweaks, htop, ranger, shutdown cancellation, process killing, and YouTube video downloading—to help users work faster and manage their systems more efficiently.

BashLinuxSysadmin
0 likes · 11 min read
11 Must‑Know Linux Terminal Tricks to Boost Your Productivity
ITPUB
ITPUB
Apr 7, 2020 · Operations

11 Must‑Know Linux Terminal Tricks to Supercharge Your Workflow

Discover a curated list of 11 powerful Linux terminal commands and shortcuts—including clipboard tricks, sudo shortcuts, background execution, scheduling, process management, file browsing, shutdown cancellation, and YouTube video downloading—to dramatically boost your productivity and streamline everyday tasks.

Sudocommand-linehtop
0 likes · 10 min read
11 Must‑Know Linux Terminal Tricks to Supercharge Your Workflow
Programmer DD
Programmer DD
Mar 26, 2020 · Operations

Boost Your Open‑Source Workflow: Master GitHub CLI in Minutes

GitHub CLI (gh) is a cross‑platform command‑line tool that lets developers clone repositories, filter issues, manage pull requests, create branches, and monitor PR status directly from the terminal, streamlining open‑source contributions on macOS, Windows, and Linux.

GitGitHub CLIautomation
0 likes · 5 min read
Boost Your Open‑Source Workflow: Master GitHub CLI in Minutes
Open Source Linux
Open Source Linux
Mar 15, 2020 · Backend Development

How to Completely Uninstall Nginx on Linux: Step-by-Step Guide

Learn the complete process to safely remove Nginx from a Linux system, including stopping the service, locating and deleting all related files, disabling auto-start, and preparing for a fresh reinstall, with clear command examples and visual aids.

BackendSystem Administrationcommand-line
0 likes · 3 min read
How to Completely Uninstall Nginx on Linux: Step-by-Step Guide
Open Source Linux
Open Source Linux
Mar 8, 2020 · Operations

Master Windows Command Line: Essential CMD, Ping, Tracert, and More

This guide explains how to open the Windows command prompt and provides clear usage examples for essential commands such as ping, tracert, ipconfig, route, netstat, telnet, common DOS commands, shortcut utilities, and creating custom cmd shortcuts for efficient system administration.

Networkingcmdcommand-line
0 likes · 6 min read
Master Windows Command Line: Essential CMD, Ping, Tracert, and More
Liangxu Linux
Liangxu Linux
Mar 8, 2020 · Fundamentals

Master Over 70 Essential Git Commands and Tricks for Developers

This article compiles more than seventy practical Git commands and techniques, explains core concepts such as working directory, staging area, and commit IDs, and provides ready‑to‑use snippets for everyday version‑control tasks, all backed by the open‑source git‑tips and HelloGitHub projects.

GitRepositoryTutorial
0 likes · 20 min read
Master Over 70 Essential Git Commands and Tricks for Developers
ITPUB
ITPUB
Feb 24, 2020 · Operations

Mastering yum update: Essential Commands, Options, and Troubleshooting for Linux

This tutorial explains how to use the yum update command on RPM‑based Linux systems, covering basic usage, repository handling, useful options like --nogpgcheck and --exclude, how to roll back updates, troubleshoot failures, and automate notifications with yum‑cron.

Linuxcommand-linepackage-management
0 likes · 12 min read
Mastering yum update: Essential Commands, Options, and Troubleshooting for Linux
Open Source Linux
Open Source Linux
Feb 21, 2020 · Operations

Master Linux ‘find’ Command: Syntax, Options, and Practical Examples

This guide introduces the powerful Linux find command, explaining its syntax, common options such as -name, -type, -perm, and actions like -print, -exec, and -ok, and provides numerous practical examples for searching files by name, path, permissions, type, size, time, and executing commands on matches.

File SearchLinuxShell
0 likes · 6 min read
Master Linux ‘find’ Command: Syntax, Options, and Practical Examples
ITPUB
ITPUB
Feb 4, 2020 · Operations

Mastering grep: Powerful Search Techniques and Essential Options for Linux

This guide explains how to use the Linux grep command to search text patterns in files, covering basic syntax, absolute and relative paths, practical examples, and a comprehensive list of useful options such as -n, -h, -l, -R, -i, -c, -w, -v, and --exclude-dir.

GrepLinuxSysadmin
0 likes · 7 min read
Mastering grep: Powerful Search Techniques and Essential Options for Linux
Liangxu Linux
Liangxu Linux
Jan 25, 2020 · Fundamentals

Creative (and Crazy) Ways to Force‑Exit Vim

This article collects a variety of unconventional commands and tricks—from killing the Vim process to using Docker, timeout aliases, and even a playful Bash one‑liner—to force Vim to quit, while warning readers about the risks of such approaches.

BashLinuxTutorial
0 likes · 8 min read
Creative (and Crazy) Ways to Force‑Exit Vim
MaGe Linux Operations
MaGe Linux Operations
Jan 3, 2020 · Operations

Boost Your Productivity with 20 Essential Linux Command‑Line Tools

This article introduces twenty powerful Linux command‑line utilities—from fast recursive search tools and interactive Git viewers to code formatters, process monitors, and smart auto‑correction helpers—explaining their core functions, typical use cases, and example commands to streamline development and system administration tasks.

Linuxcommand-linetools
0 likes · 16 min read
Boost Your Productivity with 20 Essential Linux Command‑Line Tools
ITPUB
ITPUB
Dec 25, 2019 · Operations

Master Linux File Search: Powerful find Command Techniques

This comprehensive guide explains how to use the Linux find command for locating directories, hidden files, size‑specific files, recent modifications, permission‑set files, and more, while also covering performance tuning, error handling, and sorting results.

File SearchSysadmincommand-line
0 likes · 12 min read
Master Linux File Search: Powerful find Command Techniques
Liangxu Linux
Liangxu Linux
Dec 18, 2019 · Fundamentals

Master cURL: Essential Commands for Downloading, Uploading, and Automation

This tutorial provides a comprehensive guide to using the cURL command-line tool on Linux, covering basic file downloads, following redirects, resuming interrupted transfers, setting timeouts, authentication, proxy usage, range requests, silent mode, header manipulation, data uploading, email sending, and a comparison with wget, all illustrated with practical examples and code snippets.

FTPHTTPNetworking
0 likes · 13 min read
Master cURL: Essential Commands for Downloading, Uploading, and Automation
Liangxu Linux
Liangxu Linux
Dec 16, 2019 · Fundamentals

Master Windows Network Troubleshooting: Essential Commands and Their Usage

This guide explains the most common Windows networking commands—ping, ipconfig, arp, traceroute, route, nslookup, netstat, and net—detailing their purpose, syntax, useful options, and example outputs to help you diagnose connectivity, routing, and configuration issues efficiently.

Windowscommand-lineipconfig
0 likes · 17 min read
Master Windows Network Troubleshooting: Essential Commands and Their Usage