RUCHI
RUCHI

Reputation: 11

read the content of text file nad display on standard output throgh batch file

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.

Upvotes: 0

Views: 271

Answers (1)

Alek Davis
Alek Davis

Reputation: 10732

@echo off
type file1.txt

Upvotes: 3

Related Questions