编辑
2024-10-12
TechNotes
00
功能描述PowerShell 命令Linux 命令
查看当前目录Get-Locationpwd
列出目录内容Get-ChildItemls
切换目录Set-Location <path>cd <path>
创建文件夹New-Item -ItemType Directory <name>mkdir <name>
创建文件New-Item <filename>touch <filename>
删除文件Remove-Item <filename>rm <filename>
复制文件/文件夹Copy-Item <source> <destination>cp <source> <dest>
移动文件/文件夹Move-Item <source> <destination>mv <source> <dest>
查看文件内容Get-Content <filename>cat <filename>
查找文件Get-ChildItem -Recurse -Filter <name>find <path> -name <name>
获取进程列表Get-Processps
杀死进程Stop-Process -Id <PID>kill <PID>
查看服务状态Get-Servicesystemctl status <service>
启动服务Start-Service <service>systemctl start <service>
停止服务Stop-Service <service>systemctl stop <service>
列出网络接口Get-NetAdapterip aifconfig
查看系统信息Get-ComputerInfouname -a
获取帮助信息Get-Help <cmdlet>man <command>
环境变量$env:<Variable>echo $<Variable>
读取日志Get-EventLogjournalctl
重启系统Restart-Computerreboot
如果对你有用的话,可以打赏哦
打赏
ali pay
wechat pay

本文作者:GYC

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!