regular expression

Fundamentals of Regular Expressions

Regular Expression Regular expression is a method of pattern matching. It allows you to define patterns of texts and search for it in other texts, no matter the complexity or the amount of text there is to process. Using regular expression is considered a more efficient solution, when there鈥檚 complexity in searching for a text that you want to find. It is also called as regex. Keep in mind that regular expression is supported in almost every programming language. If you were to face a situation when there鈥檚 complexity in searching a text, take a look at how the systax looks like other programming languages and utilize them. ...

July 13, 2025 路 4 min 路 Yashwanth Rathakrishnan

Linux: Manage File Permissions

This guide explains how to use Linux commands to manage file permissions, ownership and special permissions. Commands: chmod, chown, and chgrp.

June 27, 2025 路 3 min 路 Yashwanth Rathakrishnan

Linux: Assigning Permissions and Group Ownership Automatically For Newly Created Files & Directories (umask & chgrp)

To ensure that new files created in a shared directory are automatically assigned to the directory鈥檚 group rather than the group of the user who created them.

June 25, 2025 路 2 min 路 Yashwanth Rathakrishnan

Linux: Fundamentals Of File Permissions And Ownership

How to manage file permissions and ownership in Linux based operating systems.

June 17, 2025 路 4 min 路 Yashwanth Rathakrishnan