cygwin下清屏的三种方法
时间:2014-06-02 17:30:04
收藏:0
阅读:424
1. 做一个clear脚本,放到/bin下去
$vim /bin/clear
#!/bin/bash
cmd /c cls
2. ctrl + L
3. 在cygwind中install ncurses (in Utils) and then you can use: clear
我倾向于第三种方法,本来有就用原来的,不要自己弄了。
评论(0)