Nancy Gonzales
Nancy Gonzales

Reputation: 65

How can I print contents of a text file in git bash?

How can I print contents of a text file in git bash?

I added to the text file through git bash using echo "Hello World!" > my_text.txt now I just want to be able to view only in git bash.

Upvotes: 6

Views: 8138

Answers (1)

Glech
Glech

Reputation: 781

cat <your file> for example

Upvotes: 11

Related Questions