重定向问题!

重定向问题!

ls查看文件,我想达到两个效果
1:在屏幕上显示结果
2:同时要将结果输出至文件file中
要怎么写?      
使用tee命令即可!      
FYI:
引用:
-(dearvoid@LinuxEden:Forum)-(~/tmp/test)-
[28639 0] ; ls -l
total 0
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_1
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_2
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_3
-(dearvoid@LinuxEden:Forum)-(~/tmp/test)-
[28639 0] ; ls -l | tee save
total 0
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_1
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_2
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_3
-(dearvoid@LinuxEden:Forum)-(~/tmp/test)-
[28639 0] ; cat save
total 0
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_1
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_2
-rw-r--r-- 1 root root 0 2007-09-07 17:53 file_3
-(dearvoid@LinuxEden:Forum)-(~/tmp/test)-
[28639 0] ; bye
      
谢谢啦!