i need to redirect a output of a command to two files say file1 and file2 file1 is a new file and file2 is already existing file where i need to append the output i have tried
This is not giving the expected results:
command > file1 > file2
|
|
i need to redirect a output of a command to two files say file1 and file2 file1 is a new file and file2 is already existing file where i need to append the output i have tried This is not giving the expected results:
|
|||
|
|
|
You are looking for the
|
||
|
|
|
|
For Windows (cmd.exe):
|
||
|
|
|
|
Assuming you're on a Linux-like system, try
|
||
|
|
|
|
In PowerShell use
Can also tee to a variable (e.g. for further processing). |
||
|
|
|
|
In Linux: u can do this command | tee file1 >> file2 |
||
|
|
|
thanks all ... i got it |
||
|