Answers for "bash echo can create file"

1

bash echo can create file

echo "First file" > test_1.txt
echo "Second file" > test_2.txt
ls
test_1.txt test_2.txt
cat test_1.txt test_2.txt
First file
Second file
Posted by: Guest on March-05-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language