Skip to content

Tag: scripting

All the articles with the tag "scripting".

curl Flags Every Developer Should Know

curl Flags Every Developer Should Know

· Updated:

Master the curl flags that'll save you hours debugging APIs, downloads, and web requests. From -X to --compressed, here's what actually matters.

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.