Powershell Usage
# 显示UTF-8编码的文件
Get-Content -Path ".\tdp_resource.yaml" -Encoding utf8 | Out-Host -Paging
# 查找哪些文件中有github字符串
ls | sls "github"
# 查找哪些文件名中含 power
ls | where Name -like "*power*"
# 显示UTF-8编码的文件
Get-Content -Path ".\tdp_resource.yaml" -Encoding utf8 | Out-Host -Paging
# 查找哪些文件中有github字符串
ls | sls "github"
# 查找哪些文件名中含 power
ls | where Name -like "*power*"