From cec0f4789cbe6e2ab7297c4ba0a590e52f121074 Mon Sep 17 00:00:00 2001 From: Noah Masur Date: Sat, 14 Nov 2020 21:00:24 -0500 Subject: [PATCH] nushell changed flag for ls full to long --- bin/symlinks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/symlinks b/bin/symlinks index a61ccb6..71cd0c2 100755 --- a/bin/symlinks +++ b/bin/symlinks @@ -1,3 +1,3 @@ #!/usr/local/bin/nu -ls -af | where type == Symlink | select name target +ls -al | where type == Symlink | select name target