summary refs log tree commit diff
path: root/link.sh
diff options
context:
space:
mode:
Diffstat (limited to 'link.sh')
-rwxr-xr-xlink.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/link.sh b/link.sh
new file mode 100755
index 00000000..0f1f49aa
--- /dev/null
+++ b/link.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+set -e -u
+
+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" -a -L "$linkPath" \) -o ! -f "$linkPath" ]
+	ln -s -f "$filePath" "$linkPath"
+done
l if it existsJune McEnroe 2022-03-18Publish "Addendum 2021"June McEnroe 2022-03-16Remove wcwidth portJune McEnroe DYLD_FORCE_FLAT_NAMESPACE no longer exists in macOS 12 so this approach doesn't work anymore. Moved to <https://git.causal.agency/jorts/tree/wcwidth> and compiled into <https://git.causal.agency/jorts/tree/ncurses>. 2022-03-16Remove -j4 from ./PlanJune McEnroe Plan learned to set this automatically! 2022-03-15Rewrite Linux install.sh for DebianJune McEnroe 2022-03-15Remove dashJune McEnroe