diff options
author | Matthew Lemon <y@yulqen.org> | 2023-10-20 15:03:31 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-10-20 15:03:31 +0100 |
commit | df7d64d6671edccb63be6bf2d44bcf036db7b183 (patch) | |
tree | f654bddffe59e7ae5176ee6231613c90372a67d7 | |
parent | f368a4e3d126a2f5910ec95ca308836f068110db (diff) |
List files vertically
-rwxr-xr-x | curlist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ curdir=~/Documents/Notes/current/ if [[ -d $curdir ]]; then - ls "$curdir/" + ls -1 "$curdir/" else echo "The ~/Documents/Notes/current directory does not exist. Please create it to proceed." exit 1 |