aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2021-04-15 01:24:23 -0400
committertdro <tdro@users.noreply.github.com>2021-04-15 01:24:23 -0400
commit372714d313a77c4fa709090568ed6546d10b8b35 (patch)
tree7171a9645852b066e22612882f7055e5ea28e79a
parente3adbc787bf08439d25abcf692f527d62c110c80 (diff)
downloaddotfiles-372714d313a77c4fa709090568ed6546d10b8b35.tar.gz
dotfiles-372714d313a77c4fa709090568ed6546d10b8b35.tar.bz2
dotfiles-372714d313a77c4fa709090568ed6546d10b8b35.zip
.local/bin/,: Print path last with tree
-rwxr-xr-x.local/bin/,9
1 files changed, 8 insertions, 1 deletions
diff --git a/.local/bin/, b/.local/bin/,
index c9e6545..e1ed37d 100755
--- a/.local/bin/,
+++ b/.local/bin/,
@@ -30,4 +30,11 @@ attributes=$($nixLocate | while read -r attribute; do
done)
attribute=$(printf '%s' "$attributes" | fzf)
-nix-shell --packages "$attribute" --command 'printf "$buildInputs\n"; ls $buildInputs/bin; return';
+nix-shell --packages "$attribute" --command \
+'
+ printf "\n";
+ ls $buildInputs/bin;
+ printf "\n";
+ tree -L 1 $buildInputs;
+ return
+';