欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

重定向符(、)的使用

程序员文章站 2022-03-22 09:39:03
(1)、拷贝文件:        type file1 〉file2 ;...
(1)、拷贝文件:
       type file1 〉file2 ;产生 file2 文件
       type file1 〉〉file2 ;在 file2 文件后追加
      (2)、建立文件:
       echo numline = 10 〉starts.bas
       echo for i = 1 to numline 〉〉starts.bas
       echo thestr = ""〉〉starts.bas
       echo for j = 1 to 2 * i - 1 〉〉starts.bas
       echo thestr = thestr + "*"〉〉starts.bas
       echo next 〉〉starts.bas
       echo ? space(numline - i) + thestr 〉〉starts.bas
       echo next 〉〉starts.bas
      (3)、输出到打印机:
       copy starts.bas 〉prn
       或 copy starts.bas 〉lpt1