Home > database >  Use of ls -la on windows OS
Use of ls -la on windows OS

Time:02-04

software devs it is requested to help me. I want to use the ls -la command on the vs code terminal. It is not working enter image description here

I tried setting the execution policy to unrestricted. It got unrestricted but it still didn't work. Look i have used ls -la command on a kali linux vm in the past. Currently i am trying to usxe it on a windows default os running vs code and it isn't working. Please help me. Regards

CodePudding user response:

ls is a unix command. The equivalent for that in windows is dir. If you still want to use 'ls', better of setting it as an alias for dir.

CodePudding user response:

ls -la is a linux command that displays all the files including hidden files in long format. The equivalent of it on Windows is dir /a

  • Related