summary refs log tree commit diff
path: root/link.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'link.zsh')
-rwxr-xr-xlink.zsh18
1 files changed, 0 insertions, 18 deletions
diff --git a/link.zsh b/link.zsh
deleted file mode 100755
index a0a9e7aa..00000000
--- a/link.zsh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env zsh
-set -o errexit -o nounset -o pipefail
-
-if [[ $# -eq 1 ]]; then
-	linkPath="$1"
-	filePath="$PWD/home/${linkPath#$HOME/}"
-	[[ ! -f "$filePath" ]]
-	mkdir -p "$(dirname "$filePath")"
-	mv "$linkPath" "$filePath"
-fi
-
-find home -type f | while read -r findPath; do
-	filePath="$PWD/$findPath"
-	linkPath="$HOME/${findPath#home/}"
-	mkdir -p "$(dirname "$linkPath")"
-	[[ ( -f "$linkPath" && -L "$linkPath" ) || ! -f "$linkPath" ]]
-	ln -s -f "$filePath" "$linkPath"
-done