This commit is contained in:
Tyrel Souza 2023-04-26 13:31:48 -04:00
parent 24d36645f6
commit 338c6657cb
No known key found for this signature in database
GPG Key ID: F3614B02ACBE438E
1 changed files with 2 additions and 2 deletions

View File

@ -10,12 +10,12 @@
upload() {
# Given a filepath and a target name, upload the screenshot
chmod +r "$1"
scp "$1" "tyrelsouza.com:/www/tyrel.pw/s/$2"
scp "$1" "tyrel.dev:/www/tyrel.bike/s/$2"
}
url() {
# Given a target name, echo the expected URL of the uploaded screenshot
echo "https://tyrel.pw/s/$1"
echo "https://tyrel.bike/s/$1"
}
### (End)