unix made easy
one command to another. Redirection (`>`, `<`) directs output to files or inputs from files. Example: ```bash ls -l | grep "txt" > text_files.txt ``` This command lists files, filters for "txt", and saves the result. Automating Tasks with Scripts Shell scripts aut