summary refs log tree commit diff
path: root/link.sh
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-16 18:00:42 -0400
committerJune McEnroe <june@causal.agency>2018-08-16 18:00:42 -0400
commit1750a4cc5e03521fb85932a14d1cf271d27ec1ea (patch)
tree3aa012b9adf711d9378094ae5d94f8d0b94658f5 /link.sh
parentShorten .local ssh names (diff)
downloadsrc-1750a4cc5e03521fb85932a14d1cf271d27ec1ea.tar.gz
src-1750a4cc5e03521fb85932a14d1cf271d27ec1ea.zip
Port all scripts to sh
Not hard, but having to escape ( ) inside [ ] had me confused for a bit.
Diffstat (limited to '')
-rwxr-xr-xlink.sh (renamed from link.zsh)12
1 files changed, 6 insertions, 6 deletions
diff --git a/link.zsh b/link.sh
index a0a9e7aa..0f1f49aa 100755
--- a/link.zsh
+++ b/link.sh
@@ -1,10 +1,10 @@
-#!/usr/bin/env zsh
-set -o errexit -o nounset -o pipefail
+#!/bin/sh
+set -e -u
 
-if [[ $# -eq 1 ]]; then
-	linkPath="$1"
+if [ $# -eq 1 ]; then
+	linkPath=$1
 	filePath="$PWD/home/${linkPath#$HOME/}"
-	[[ ! -f "$filePath" ]]
+	[ ! -f "$filePath" ]
 	mkdir -p "$(dirname "$filePath")"
 	mv "$linkPath" "$filePath"
 fi
@@ -13,6 +13,6 @@ 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" ]]
+	[ \( -f "$linkPath" -a -L "$linkPath" \) -o ! -f "$linkPath" ]
 	ln -s -f "$filePath" "$linkPath"
 done