Tag: bash

  • 8 Advanced Cmd Line Tools

    8 Advanced Cmd Line Tools

    The post explores eight advanced command line tools from the moreutils package, which extend the capabilities of standard Linux coreutils. These tools include ‘combine’ for merging files with Boolean operations, ‘ifne’ for conditional command execution, ‘parallel’ for running multiple jobs simultaneously, ‘pee’ for sending input to multiple commands, ‘sponge’ for safe in-place file edits, ‘ts’…

  • 5 Linux Commands

    5 Linux Commands

    Five (5) Linux commands you need to gather your system’s most important information: Linux never suffers from having too little information. With just a few commands, you can gather all the details you need to understand what’s under the hood of your computer. When I’m using Linux, I know that all the information I need…

  • The logic of && and || on Linux

    The logic of && and || on Linux

    These AND and OR equivalents can be used in scripts to determine next actions. We’ve all probably seen the && and || operators in use from time to time. These AND and OR equivalents are often used in scripts to make decisions about what happens next. In this post, we’ll take a look at how…