From 7f5d913b3c7759319b94e37b258b8520cf8aa515 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 20 Jan 2022 00:07:07 -0300 Subject: [PATCH] Remove unneded sed --- scripts/linkFiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index d331c17..88393b4 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -76,7 +76,7 @@ loopThroughFiles() { done if [ -d "$DOTFILES/other" ]; then - filesOutput=$(find -H "$DOTFILES/other" | sed -n 2~1p | awk '{ sub(/.*dotfiles\/other\//, ""); print }') + filesOutput=$(find -H "$DOTFILES/other" -mindepth 1 | awk '{ sub(/.*dotfiles\/other\//, ""); print }') files=""; for item in $filesOutput; do files="${files}$item\n" done