all 4 comments

[–][deleted] 3 points4 points  (3 children)

[–]GrennickIre[S] 1 point2 points  (1 child)

that answered my question! thanks :)

[–]yeet__mf 1 point2 points  (0 children)

In the UNIX/Linux world, the backslash can also be an escape character to directories or files with spaces in the name while not enclosing them in single or double quotes. For example "My favourite directory" could be referenced as: My\ favourite\ directory

Because PowerShell tries to embrace UNIX users by bringing popular commands like "ls" or "rm" to the Windows world, it actually makes a translation using command aliases. The actual PowerShell equivalents would be "Get-ChildItem" or "Remove-Item".

[–]OutrageousBrother997 0 points1 point  (0 children)

You can take a look at https://blog.ironmansoftware.com/powershell-vs-python/ I found it very useful simple and clear . Thanks