powershell 获取gists的链接,Powershell版本。获取活动github用户的主题链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取gists的链接,Powershell版本。获取活动github用户的主题链接相关的知识,希望对你有一定的参考价值。
<#
Get list of public gists from GitHub
Dependencies: Powershell v3+
ConvertTo-Hashtable: see in my gists
2017 Andriy Melnyk https://github.com/TurboBasic
#>
$DEFAULT_API = 'https://api.github.com/gists'
#$DEFAULT_API = 'https://api.github.com/users/USERNAME/gists'
Function Get-Gist( [string]$api = 'https://api.github.com/gists' ) {
(curl $api |
select -expandProperty Content |
ConvertFrom-Json) | Foreach-Object {
$_currentRecord=$_
$_.files | ConvertTo-Hashtable |
Select -expandProperty Values |
Foreach-Object {
[PSCustomObject]@{
id = $_currentRecord.id;
description = $_currentRecord.description;
filename = $_.filename;
url = $_.raw_url
}
}
} | Format-List filename, url, description
}
以上是关于powershell 获取gists的链接,Powershell版本。获取活动github用户的主题链接的主要内容,如果未能解决你的问题,请参考以下文章
powershell new_gist_file.ps1
powershell 发布SDL Web 8.5(Tridion)项并检查结果。这是这个旧脚本的8.5版本:https://gist.github.com/jhorsman/6b263962
Python、Powershell 和 Popen
powershell 来自https://stackoverflow.com/questions/1862554/get-childitem-recurse-as-a-parameter-in-pow
为自动执行设置 PowerShell 脚本
禁用多个计划任务 - PowerShell