简体   繁体   中英

script command - bash linux terminal

I am running the cmd

script install-log.txt

the terminal successfully returns

Script started, file is install-log.txt

If I begin typing commands and receiving output to the screen

lsblk
fdisk -l
ls
echo ok

when I check the install-log.txt

nano install-log.txt

it is empty.

I thought all cmd was supposed to be saved there until the session is finished?

I am using Arch-Linux installation CD, and wanted to save this log to record my installation setup cmds.

You need to terminate script operation by running 'exit' command. That wont exit your terminal as such. Then you can view your log file.

Here is the duplicate with more detailed info -> Bash script: Using "script" command from a bash script for logging a session

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM