2024-11-08 12:38:20 +01:00
|
|
|
The *install-signal-cli.ps1* Script
|
|
|
|
===========================
|
2021-11-08 21:36:42 +01:00
|
|
|
|
2022-02-10 09:01:07 +01:00
|
|
|
This PowerShell script installs signal-cli from github.com/AsamK/signal-cli.
|
|
|
|
See the Web page for the correct version number.
|
2021-11-08 21:36:42 +01:00
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2021-11-08 21:36:42 +01:00
|
|
|
```powershell
|
2024-11-08 12:35:11 +01:00
|
|
|
/home/markus/Repos/PowerShell/scripts/install-signal-cli.ps1 [[-Version] <String>] [<CommonParameters>]
|
2021-11-08 21:36:42 +01:00
|
|
|
|
|
|
|
-Version <String>
|
|
|
|
Specifies the version to install
|
|
|
|
|
|
|
|
Required? false
|
|
|
|
Position? 1
|
|
|
|
Default value
|
|
|
|
Accept pipeline input? false
|
|
|
|
Accept wildcard characters? false
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Example
|
|
|
|
-------
|
2021-11-08 21:36:42 +01:00
|
|
|
```powershell
|
|
|
|
PS> ./install-signal-cli 0.11.12
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Notes
|
|
|
|
-----
|
2022-11-17 19:46:02 +01:00
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-11-08 21:36:42 +01:00
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Related Links
|
|
|
|
-------------
|
2021-11-08 21:36:42 +01:00
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Installs signal-cli
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script installs signal-cli from github.com/AsamK/signal-cli.
|
|
|
|
See the Web page for the correct version number.
|
|
|
|
.PARAMETER Version
|
|
|
|
Specifies the version to install
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./install-signal-cli 0.11.12
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
param([string]$Version = "")
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($Version -eq "") { $Version = read-host "Enter version to install (see https://github.com/AsamK/signal-cli)" }
|
|
|
|
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
|
|
|
|
|
|
set-location /tmp
|
|
|
|
|
|
|
|
& wget --version
|
|
|
|
if ($lastExitCode -ne "0") { throw "Can't execute 'wget' - make sure wget is installed and available" }
|
|
|
|
|
|
|
|
& wget "https://github.com/AsamK/signal-cli/releases/download/v$Version/signal-cli-$($Version).tar.gz"
|
|
|
|
if ($lastExitCode -ne "0") { throw "'wget' failed" }
|
|
|
|
|
|
|
|
sudo tar xf "signal-cli-$Version.tar.gz" -C /opt
|
|
|
|
if ($lastExitCode -ne "0") { throw "'sudo tar xf' failed" }
|
|
|
|
|
|
|
|
sudo ln -sf "/opt/signal-cli-$Version/bin/signal-cli" /usr/local/bin/
|
|
|
|
if ($lastExitCode -ne "0") { throw "'sudo ln -sf' failed" }
|
|
|
|
|
|
|
|
rm "signal-cli-$Version.tar.gz"
|
|
|
|
if ($lastExitCode -ne "0") { throw "'rm' failed" }
|
|
|
|
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2024-11-08 12:35:11 +01:00
|
|
|
"✅ installed signal-cli $Version to /opt and /usr/local/bin in $Elapsed sec"
|
2022-11-17 20:02:26 +01:00
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2024-11-20 11:52:20 +01:00
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:54)*
|