且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在Windows命令提示符下创建ls?

更新时间:2022-11-03 07:51:31

You could:

  • create a batch file called ls.bat and have it contain the dir command only
  • add the directory where the ls.bat file exists to your PATH environment variable

You could then execute ls from a command prompt.