fd3
fd3 is typically encountered as shorthand for the Unix-like file descriptor number 3. In these systems, every process starts with three standard file descriptors: 0 for standard input, 1 for standard output, and 2 for standard error. Additional file descriptors, beginning with 3, are created when programs open extra files or establish pipes, sockets, or other resources. The number 3 is not special in itself; it is simply the first available descriptor after the standard streams and can be closed, duplicated, or reassigned as needed.
In shell scripting and common programming practice, fd3 is frequently used to hold an extra, independent I/O
Notes: The use of the specific number 3 is conventional; fd3 itself is not inherently special beyond