You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository is a comprehensive guide to mastering Red Hat Enterprise Linux (RHEL), covering essential commands, system administration tasks, and package management with RPM and Yum. Ideal for beginners and aspiring Linux administrators.
A lightweight shell utility for managing a directory stack. Easily navigate between directories by pushing, popping, and swapping paths. Ideal for developers and system administrators who frequently switch between multiple project directories.
A simple Unix shell implementation that mimics basic functionality of bash. It supports command execution, input/output redirection, pipes, and essential built-ins like cd, pwd, and exit.
Pipex reproduces the behaviour of the shell pipe | command in C. It launches as ./pipex infile cmd1 cmd2 outfile and behaves as this line does in the shell < infile cmd1 | cmd2 > outfile .