Linux Shell基础知识视频课程——03shell中别名 alias 和 录屏小工具 script

别名: alias
格式: alias cp='cp -i'

要想永久生效,需要把命令写到用户的家目录的 .bashrc 文件里面。
写完以后加载配置 source .bashrc 或者 . .bashrc , . 和 source 一样

录屏工具: script
录制格式: script -a action.log -t 2> time.log ,想结束录制 按 Ctrl + D
回放格式:scriptreplay time.log action.log

[root@chances126 gao]# 
[root@chances126 gao]# script -a action.log -t 2> time.log
Script started, file is action.log
[root@chances126 gao]# 

你可能感兴趣的:(Linux Shell基础知识视频课程——03shell中别名 alias 和 录屏小工具 script)