We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb622fe commit 932fcabCopy full SHA for 932fcab
vnc-software/download_tigervnc.sh
@@ -1,5 +1,10 @@
1
#!/bin/sh
2
3
+# Execute with containing directory as current working directory
4
+mydir=$(readlink -f "$0")
5
+mydir=$(dirname "$mydir")
6
+cd "$mydir"
7
+
8
# Download link obtained from https://sourceforge.net/projects/tigervnc/
9
outfile=tigervnc-latest-stable.tar.gz
10
@@ -8,3 +13,6 @@ tar xf "$outfile" && \
13
rm -rf tigervnc-linux-x86_64 && \
14
mv tigervnc-1.13.1.x86_64 tigervnc-linux-x86_64 && \
15
rm "$outfile"
16
17
+# Go back to original directory
18
+cd -
0 commit comments