- What are file descriptors?
A handle to files or devices used by Linux as an interface for input/output. - What do the terms stdin, stdout and stderr mean?
- stdin, standard input. Used for input to commands.
- stdout, standard output. Used for normal output of commands.
- stderr, standard error. Used for error output of commands.
- How to stdin, stdout and stderr map to the default file descriptors?
stdin is bound to fd0, stdout to fd1, and stderr to fd2. - What is the difference between the output redirections >, 1> and 2>?
> and 1> are equal, and refer to redirecting stdout. 2> is used to redirect stderr. - What is the difference between > and >>?
> will overwrite the file if it already has content, while >> will append to the file. - How can both stdout and stderr be redirected at the same time?
- By using &> (and &>>)
- By binding...
United States
Great Britain
India
Germany
France
Canada
Russia
Spain
Brazil
Australia
Singapore
Hungary
Philippines
Mexico
Thailand
Ukraine
Luxembourg
Estonia
Lithuania
Norway
Chile
South Korea
Ecuador
Colombia
Taiwan
Switzerland
Indonesia
Cyprus
Denmark
Finland
Poland
Malta
Czechia
New Zealand
Austria
Turkey
Sweden
Italy
Egypt
Belgium
Portugal
Slovenia
Ireland
Romania
Greece
Argentina
Malaysia
South Africa
Netherlands
Bulgaria
Latvia
Japan
Slovakia