powershell 常用命令
Posted lihuanhuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 常用命令相关的知识,希望对你有一定的参考价值。
废话不说,直接上实例:
1.copy file or dirPS C:\\Users\\robin> Copy-Item -Path .\\PowerShell-Best-Pactise\\ -Destination C:\\Users\\robin\\Desktop\\
2.delete filesPS C:\\Users\\robin> remove-item .\\PowerShell-Best-Pactise*
3.delete dirPS C:\\Users\\robin> remove-item .\\PowerShell-Best-Pactise\\
4.create new filePS C:\\Users\\robin> new-item PowerShell-Best-Pactise
目录: C:\\Users\\robin
Mode LastWriteTime Length Name
-a---- 2021/9/27 22:56 0 PowerShell-Best-Pactise
5.create dir:PS C:\\Users\\robin> new-item -path ./ -name logfiles -type directory
目录: C:\\Users\\robin
Mode LastWriteTime Length Name
d----- 2021/9/27 23:01 logfiles
以上是关于powershell 常用命令的主要内容,如果未能解决你的问题,请参考以下文章
powershell 具有Linux样式提示的PowerShell配置文件和常用Docker命令的别名