summaryrefslogtreecommitdiff
path: root/help/C/l10n_scripts/filesel.sh
diff options
context:
space:
mode:
Diffstat (limited to 'help/C/l10n_scripts/filesel.sh')
-rwxr-xr-xhelp/C/l10n_scripts/filesel.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/help/C/l10n_scripts/filesel.sh b/help/C/l10n_scripts/filesel.sh
deleted file mode 100755
index e9abe1d3..00000000
--- a/help/C/l10n_scripts/filesel.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-FILE=`zenity --file-selection --title="Select a File"`
-
-case $? in
- 0)
- echo "\"$FILE\" selected.";;
- 1)
- echo "No file selected.";;
- -1)
- echo "No file selected.";;
-esac
-
bgstack15