功能描述 | PowerShell 命令 | Linux 命令 |
---|---|---|
查看当前目录 | Get-Location | pwd |
列出目录内容 | Get-ChildItem | ls |
切换目录 | 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-Process | ps |
杀死进程 | Stop-Process -Id <PID> | kill <PID> |
查看服务状态 | Get-Service | systemctl status <service> |
启动服务 | Start-Service <service> | systemctl start <service> |
停止服务 | Stop-Service <service> | systemctl stop <service> |
列出网络接口 | Get-NetAdapter | ip a 或 ifconfig |
查看系统信息 | Get-ComputerInfo | uname -a |
获取帮助信息 | Get-Help <cmdlet> | man <command> |
环境变量 | $env:<Variable> | echo $<Variable> |
读取日志 | Get-EventLog | journalctl |
重启系统 | Restart-Computer | reboot |
本文作者:GYC
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!