[Day 3] Linux Basics - find, grep, Pipe, Redirection
1. Redirection (> vs >>)
Both redirect command output to a file, but they handle existing content differently.
> → Overwrite (truncates the file, then writes). Same as C's fopen("w")
>> → Append (ad
frogsdevlog.hashnode.dev3 min read