Reputation: 65
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
Reputation: 781
cat <your file> for example
cat <your file>
Upvotes: 11