Linux Cheat Sheet

From
Revision as of 09:48, 14 April 2025 by 84.179.91.133 (talk) (Overwrite File with specific content/string:)
Jump to: navigation, search

This Page is for a Cheat Sheet of Linux commands.


Overwrite File with specific content/string:

Command:

echo "<string>" > <filename>

printf "<string>" > <filename>

Example:

echo "hello" > beispiel.txt

printf "hello" > beispiel.txt

Append File with specific content/string:

echo "<string>" >> <filename>

printf "<string>"" >> <filename>

Example:

echo "hello" >> beispiel.txt

printf "hello" >> beispiel.txt