tags:

views:

98

answers:

1

hi i have created one file file1.txt, content of file1.txt is "abcde". I want to read the content of file1.txt and print on standard output through batch file. How to read the content of file and print on standard output via batch file.

+2  A: 
@echo off
type file1.txt
Alek Davis