Tag: scripting
All the articles with the tag "scripting".
-
How to Transfer docker Images Without a Repository
Move Docker images between hosts without a registry using docker save and docker load — air-gapped deployments made simple.
-
Copying Files Between Docker Containers and Host Machines
Use docker cp to move files between running containers and your host machine — no volumes needed for one-off file transfers.
-
Multiple Actions with a Single docker exec Call
Run multiple commands in one docker exec call using sh -c — pipe commands, chain with && or ;, and avoid repeated container roundtrips.
-
Mastering xargs in Linux
xargs turns stdin into arguments — build complex pipelines, run parallel jobs, and handle filenames with spaces without breaking everything.
-
FFmpeg: Advanced Video & Audio Manipulations
Advanced FFmpeg techniques — filter graphs, stream mapping, subtitle burning, speed adjustment, and batch processing scripts.
-
Executing Commands with Asterisks in Docker
Shell globbing breaks inside docker exec because of how args are parsed — here's how to pass wildcards and asterisks correctly.
-
FFmpeg: Comprehensive Audio Processing Techniques
FFmpeg audio processing — normalize levels, convert formats, mix tracks, extract audio from video, and apply filters from the command line.
-
Mastering Vim: Essential Commands and Tips
vim survival guide — modes, motions, search and replace, macros, splits, and the config tweaks that make it actually enjoyable to use.
-
Tmux for Streamlining Dev Workflow
tmux sessions, windows, and panes for developers — layouts, plugins, and the .tmux.conf that makes it feel like a proper IDE.
-
Socat: The Swiss Army Knife of Networking
socat relays data between almost any two endpoints — TCP, UDP, Unix sockets, files, and serial ports. The netcat you didn't know you needed.
-
User and Group Management in Linux
Create, modify, and delete users and groups on Linux — useradd, usermod, groupadd, sudo access, and /etc/passwd explained.
-
SumGuy’s Guide to Linux Log Analysis
journalctl, grep, awk, and tail -f — read your Linux logs like a pro and find the error before it pages you at 3 AM.