Which Windows Shell command will print a file content on the standard output (like cat in Linux)?

心已入冬 提交于 2019-12-05 04:47:46

The command is: type <filename>

However, if you want to Unix-fy your Windows shell there are Win32 ports of most of the command Unix style commands.

This is kinda hacky but I did this...

Download Git Bash for Windows. This is very useful to open a linux style command prompt on windows.

Then, create a new git repository and add the file you wish to show to the git repo. Then you can git show.

Let's say you have testFile.txt that you wish to show and it is located at "C:\Users\username\Desktop\FolderWhereFileIs"

cd "/c/Users/username/Desktop/FolderWhereFileIs/"
git add -A
git commit -m "Commit with all files"
git show testFile.txt
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!