Answers for "append to multiple files bash"

0

how to append two file sin bash

cat file1 file2 > file 3
Posted by: Guest on January-21-2021
0

append to multiple files bash

# The last section is to prevent outputting to stdin as well

echo "Some info" | tee -a file1 file2 file3 | cat 1> /dev/null
Posted by: Guest on April-15-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language