जब आप एक ही फ़ाइल में stdout और stderr दोनों को पुनर्निर्देशित करना चाहते हैं, तो आप इसका उपयोग करके command 1>file.txt 2>&1
, या कर सकते हैं command &>file.txt
। लेकिन command 1>file.txt 2>file.txt
उपरोक्त दो आदेशों से अलग व्यवहार क्यों है ?
निम्नलिखित एक सत्यापन आदेश है।
$ cat redirect.sh
#!/bin/bash
{ echo -e "output\noutput" && echo -e "error" 1>&2; } 1>file.txt 2>&1
{ echo -e "output\noutput" && echo -e "error" 1>&2; } 1>file1.txt 2>file1.txt
{ echo -e "error" 1>&2 && echo -e "output\noutput"; } 1>file2.txt 2>file2.txt
{ echo -e "output" && echo -e "error\nerror" 1>&2; } 1>file3.txt 2>file3.txt
{ echo -e "error\nerror" 1>&2 && echo -e "output"; } 1>file4.txt 2>file4.txt
$ ./redirect.sh
$ echo "---file.txt---"; cat file.txt;\
echo "---file1.txt---"; cat file1.txt; \
echo "---file2.txt---"; cat file2.txt; \
echo "---file3.txt---"; cat file3.txt; \
echo "---file4.txt----"; cat file4.txt;
---file.txt---
output
output
error
---file1.txt---
error
output
---file2.txt---
output
output
---file3.txt---
error
error
---file4.txt----
output
rror
जहां तक परिणामों को देखा जाता है, ऐसा लगता है कि जब आप दौड़ते हैं तो दूसरी प्रतिध्वनि पहली प्रतिध्वनि स्ट्रिंग को अधिलेखित कर देती है command 1>file.txt 2>file.txt
, लेकिन मुझे नहीं पता कि यह क्यों होगा। (कहीं एक संदर्भ है?)