man bash
कहते हैं:
exec [-cl] [-a name] [command [arguments]]
If command is specified, it replaces the shell. No new process
is created. The arguments become the arguments to command. If
the -l option is supplied, the shell places a dash at the
beginning of the zeroth argument passed to command. This is
what login(1) does. The -c option causes command to be executed
with an empty environment. If -a is supplied, the shell passes
name as the zeroth argument to the executed command. If command
cannot be executed for some reason, a non-interactive shell
exits, unless the execfail shell option is enabled. In that
case, it returns failure. An interactive shell returns failure
if the file cannot be executed. If command is not specified,
any redirections take effect in the current shell, and the
return status is 0. If there is a redirection error, the return
status is 1.
अंतिम दो पंक्तियां हैं जो महत्वपूर्ण है: यदि आप exec
बिना किसी आदेश के स्वयं चलाते हैं , तो यह केवल वर्तमान शेल पर पुनर्निर्देशन को लागू करेगा। आप शायद जानते हैं कि जब आप दौड़ते हैं command > file
, तो आपके टर्मिनल के बजाय आउटपुट command
लिखा file
जाता है (इसे रीडायरेक्शन कहा जाता है )। यदि आप exec > file
इसके बजाय चलाते हैं, तो पुनर्निर्देशन पूरे शेल पर लागू होता है: शेल द्वारा निर्मित कोई भी आउटपुट file
आपके टर्मिनल के बजाय लिखा जाता है । उदाहरण के लिए यहाँ
bash-3.2$ bash
bash-3.2$ exec > file
bash-3.2$ date
bash-3.2$ exit
bash-3.2$ cat file
Thu 18 Sep 2014 23:56:25 CEST
मैं पहली बार एक नया bash
खोल शुरू करता हूं । फिर, इस नए शेल में मैं चलता हूं exec > file
, ताकि सभी आउटपुट को रीडायरेक्ट किया जा सके file
। दरअसल, इसके बाद मैं दौड़ता हूं date
लेकिन मुझे कोई आउटपुट नहीं मिलता है, क्योंकि आउटपुट को रीडायरेक्ट किया जाता है file
। तब मैं अपने शेल से बाहर निकलता हूं (ताकि रीडायरेक्शन अब लागू न हो) और मैं देखता हूं कि file
वास्तव में date
मेरे द्वारा पहले चलाए गए कमांड का आउटपुट है ।