I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
Param([string]$myVar ) | |
$token = '<API_Token>' | |
$headers = @{ | |
"Authorization" = "Bearer $token" | |
"Content-type" = "application/json" | |
} | |
$body = @{ |
# Download latest dotnet/codeformatter release from github | |
$repo = "dotnet/codeformatter" | |
$file = "CodeFormatter.zip" | |
$releases = "https://api.github.com/repos/$repo/releases" | |
Write-Host Determining latest release | |
$tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[0].tag_name |
#!/bin/sh -e | |
# Written by PlatinumMaster, based on the work of mcd1992. | |
mkdir -p /mnt/disk | |
echo "Wiping the plugged in disk now, you have been warned!" | |
# Wipe disk and mount it | |
mkfs.ext4 /dev/block/sda1 | |
mount /dev/block/sda1 /mnt/disk | |
cd /mnt/disk |