To start recording a shell session using the script command in Linux, you first need to understand the purpose and functionality of this command. The script command is a powerful tool that allows you to record and save all the input and output of a shell session into a file. This can be useful for various reasons, such as documenting your work, troubleshooting, or sharing your session with others for analysis or review.
To begin recording a shell session, open a terminal window and simply type the following command:
script [options] [file]
Here, `[options]` refers to any additional flags or parameters that you may want to specify, and `[file]` is the optional name of the file where the session will be saved. If you don't provide a file name, the session will be saved in a default file named "typescript" in the current directory.
Let's explore some commonly used options with the script command:
– `-a` or `–append`: This option allows you to append the session to an existing file instead of creating a new one. For example, if you want to append the session to a file named "session.log", you would use the following command:
script -a session.log
– `-c` or `–command`: This option lets you specify a command to be executed within the script session. After the command finishes executing, the session will be saved to the specified file. For instance, if you want to record the output of a specific command, you can use:
script -c "ls -l" output.log
– `-t` or `–timing`: With this option, the script command records the timing information of each keystroke, allowing you to replay the session with accurate timing. This can be helpful in scenarios where timing is important, such as performance analysis or debugging. To enable timing, use the following command:
script -t timing.log
Once you have started the script session, all your subsequent commands and their output will be recorded in the specified file. To stop recording, simply type `exit` or press `Ctrl+D` to exit the shell session.
It's worth noting that the script command captures everything displayed on the terminal, including control characters and escape sequences. This means that the recorded session will faithfully reproduce the exact appearance of the original session, including any formatting, color codes, and cursor movements.
The script command is a valuable tool for recording and documenting shell sessions in Linux. By using the appropriate options and parameters, you can customize the behavior of the command to suit your specific requirements. Whether you need to keep a record of your work, troubleshoot issues, or share your session with others, the script command provides a convenient and reliable solution.
Other recent questions and answers regarding Examination review:
- How can you replay a script recording using the scriptreplay command?
- What is the benefit of using the timing option with the script command?
- How can you specify a different file name for the script command output?
- What is the purpose of the script command in Linux system administration?

