Copyright © Philip M. Parker, INSEAD. Terms of Use.

INPUT/OUTPUT REDIRECTION

Specialty Definition: INPUT/OUTPUT REDIRECTION

DomainDefinition

Computing

Input/output redirection In Unix, to send ouput from a process to different file or device or to another process via a pipe, or to have a process read its input from a different file, device or pipe. Some other operating systems have similar facilities. To redirect input to come from a file instead of the keyboard, use "<": myprog < myfile Similarly to redirect output to a file instead of the screen: ls > filelist A pipe redirects the output of one process directly into the input of another who | wc -l A common misuse by beginners is cat myfile | myprog Which is more or less equivalent to "myprog < myfile" except that it introduces an extra unnecessary cat process and buffer space for the pipe. Even the "<" is unnecessary with many standard Unix commands since they accept input file names as command line arguments anyway. Unix's concept of standard input/output and I/O redirection make it easy to combine simple processes in powerful ways and to use the same commands for different purposes. (1998-04-24). Source: The Free On-line Dictionary of Computing.

Source: compiled by the editor from various references; see credits.

Top     

Crosswords: INPUT/OUTPUT REDIRECTION

Specialty definitions using "INPUT/OUTPUT REDIRECTION": I/O redirectionredirection. (references)

Top     

Alternative Orthography: INPUT/OUTPUT REDIRECTION


Hexadecimal (or equivalents, 770AD-1900s) (references)

49 4E 50 55 54 2F 4F 55 54 50 55 54      52 45 44 49 52 45 43 54 49 4F 4E

Leonardo da Vinci (1452-1519; backwards) (references)

    

Binary Code (1918-1938, probably earlier) (references)

01001001 01001110 01010000 01010101 01010100 00101111 01001111 01010101 01010100 01010000 01010101 01010100 00100000 01010010 01000101 01000100 01001001 01010010 01000101 01000011 01010100 01001001 01001111 01001110

HTML Code (1990) (references)

&#73 &#78 &#80 &#85 &#84 &#47 &#79 &#85 &#84 &#80 &#85 &#84 &#32 &#82 &#69 &#68 &#73 &#82 &#69 &#67 &#84 &#73 &#79 &#78

ISO 10646 (1991-1993) (references)

0049 004E 0050 0055 0054 002F 004F 0055 0054 0050 0055 0054      0052 0045 0044 0049 0052 0045 0043 0054 0049 004F 004E

Encryption (beginner's substitution cypher): (references)

43485055541749555450555425239384352393754434948

Top     



INDEX

1. Crosswords
2. Orthography
3. Bibliography


  

Copyright © Philip M. Parker, INSEAD. Terms of Use.