Przejdลบ do treล›ci

๐Ÿ”€ Redirections


๐ŸŽ“ Who This Is For

  • Beginners learning shell I/O
  • Intermediate users writing scripts
  • Advanced engineers reviewing fundamentals
  • DevOps and sysadmins working with logs and pipelines

๐Ÿ”ง Examples

1
2
3
4
5
echo "hello" > file.txt
echo "append" >> file.txt
command < input.txt
command 2> errors.log
command &> all.log