Archiving and Compression with tar and gzip
Mar 26, 2023 | coreutils gzip tarArchiving and compressing files are essential operations in managing data and file storage.
Text Manipulation with sort and uniq Commands
Mar 24, 2023 | coreutilsThe sort command allows you to sort lines in a file, while the uniq command is used for removing duplicate lines from a file.
Awk. Extract, Manipulate, and Analyze Text Data
Mar 23, 2023 | awk coreutils macosThe awk command is a powerful text manipulation tool that is native to Unix-based systems. It's designed for performing text processing tasks such as filtering, transformation, and analysis.
The Power of 'sed' Command, A Beginner's Guide
Mar 22, 2023 | coreutils sedsed stands for Stream Editor, and it is an essential utility that allows you to perform basic text transformations on an input stream (either a file or input from a pipeline).
A Beginner's Guide to Using grep
Mar 21, 2023 | coreutils grep macosgrep is a command-line tool used for searching for text patterns in files or streams of input.