我想记录屏幕上出现的所有内容。它应该是类似历史文件的东西:我已经做了类似的东西,但它不起作用。我看不到脚本在做什么。
exec > output.txt 2>&1
echo "Hello"
echo "Alice"
echo "put something"
read input
echo $input
感谢您的任何帮助。
答案1
我没有找到任何有用的信息。我做了一些对我来说非常丑陋的东西:
''' echo "Hello"|&tee -a log.txt
echo "Alice"|&tee -a log.txt
echo "put something"|&tee -a log.txt
read input
echo &input|&tee -a log.txt
'''
块引用
感谢您的帮助。