September 3, 2023

Add multiple lines to a new file with cat

$ cat > file.txt << EOF
> first line you want to add
> second line
> et cetera
> EOF

This command will also create file.txt. No need to create a file before running this command.

Important: if file.txt exists, cat > file.txt will replace existing content.

EOF just stands for End Of File’.

See also:


personal computing command-line interface (cli) gnu linux trisquel shell literacy office applications wiki cat

No affiliate links, no analytics, no tracking, no cookies. © 2016-2023 yctct.com. Content is licensed under CC BY-NC-SA 4.0 .