But once you finish it, you will never look at a terminal the same way again. You will start piping grep into awk into sort in your sleep. And that is exactly the point.
Many beginners try basename or complex string manipulation. Solution: Use find , sed , or basename with parameter expansion. shell01 42
Writing a manual counter with awk . Elegant Solution: sed -n 'p;n' (print, then skip next line). Key lesson: Learn sed 's addressing modes. One-liners beat multi-liners. 4. r_dwssap - The Mirror of /etc/passwd Prompt: Take /etc/passwd , keep every other line starting from the 2nd, reverse login order, swap : for spaces, and print only users with a specific shell. But once you finish it, you will never
find . -type f -name "*.sh" -exec basename {} .sh \; Key lesson: Read the find man page until you understand -exec and {} \; . Prompt: Count all files and directories in the current directory and all subdirectories. Many beginners try basename or complex string manipulation
The official goal of Shell01 is simple: "Introduction to basic commands and the manipulation of files and directories." However, anyone who has passed through 42’s common core knows the reality: