10 lines
403 B
Bash
10 lines
403 B
Bash
# Date: 02/20/2023
|
|
# Author: Anthony Correa
|
|
# This script will download the v1.2.0 release of gdi-conversion
|
|
# it can then be used as gdi-conversion-linux -c ./MyUser/
|
|
# https://github.com/sirconan/gdi-conversion
|
|
|
|
# Usage: $ ./get-gdi-conversion.sh
|
|
|
|
wget https://github.com/sirconan/gdi-conversion/releases/download/1.2.0/gdi-conversion-linux-v1.2.0 -O gdi-conversion-linux
|
|
chmod +x gdi-conversion-linux |