resize命令设置终端机视窗的大小。执行resize指令可设置虚拟终端机的视窗大小。
语法格式
resize [参数]
常用参数:
-c | 就算用户环境并非c shell,也用c shell指令改变视窗大小 |
-s | 设置终端机视窗的垂直高度和水平宽度 |
-u | 就算用户环境并非bourne shell,也用bourne shell指令改变视窗大小 |
参考实例
使用 c shell:
[root@coonote ~]# resize -c set noglob; setenv columns '99'; setenv lines '34'; unset noglob;
使用 bourne shell :
[root@coonote ~]# resize -u columns=99; lines=34; export columns lines;
设置指定大小 :
[root@coonote ~]# resize -s 80 160