Replace every `linux` (any case) with `LINUX` in welcome.txt and print the result.
`sed 's/pattern/replacement/g'` does a global substitution. For case-insensitive matching use the `gi` flags.
Run: `sed 's/linux/LINUX/gi' welcome.txt` — the original file is NOT modified, only stdout.
Sign in to save your code and track progress across devices.