Skip to content

Tag: bash

All the articles with the tag "bash".

Bash One-Liners Worth Remembering

Bash One-Liners Worth Remembering

· Updated:

Twenty powerful bash one-liners every sysadmin should know, file ops, process hunting, networking, text processing, disk analysis

Named Pipes (FIFOs) in Shell Scripts

Named Pipes (FIFOs) in Shell Scripts

· Updated:

Named pipes (FIFOs) let you buffer and synchronize between processes. They're underused but solve real problems: queuing, coordination, and complex data flows.

Here Documents vs Here Strings in Bash

Here Documents vs Here Strings in Bash

· Updated:

Bash heredocs and here strings explained: <<EOF for multiline input, <<-EOF for tab-indented blocks, <<<string for single lines, and when to use each.