summaryrefslogtreecommitdiff
path: root/install_wget
diff options
context:
space:
mode:
Diffstat (limited to 'install_wget')
-rw-r--r--install_wget11
1 files changed, 0 insertions, 11 deletions
diff --git a/install_wget b/install_wget
deleted file mode 100644
index 4800e8d..0000000
--- a/install_wget
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env bash
-
-find . -type f -name "*.wget" | \
- while read -r file; do
- destination=$HOME/$(echo "${file%.*}" | sed 's#\./[^/]*/##')
- mkdir -p "$(dirname "$destination")"
- wget "$(cat "$file")" -O "$destination"
- if [[ "$file" == ./bin/* ]]; then
- chmod +x "$destination"
- fi
- done && echo "Installation successful"