Created by Paul Falstad in 1990 at Princeton University, Zsh (Z Shell) is a powerful open-source Unix shell and the default shell of macOS.
Provider
1 results shownArticle
3 results shownLinux Server Basics: Essential Commands, Permissions, and Log Management
Linux server administration is essential for developers. This article covers the most practical Linux commands for file management and system administration.
Regex-Style Path Extraction Tricks in Linux Shell
To extract parts of a path in Shell scripts, use ${variable#...}, ${variable##...}, ${variable%...}, and ${variable%%...} pattern matching to quickly strip directory components or extensions.
Ways to Batch Compress Folders in Linux
Use a for loop in Linux to compress every folder in the current directory into a zip file with the same name, or use tar to package multiple folders into one archive. This article covers both common batch compression approaches.