about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-08-13 11:24:19 -0500
committerCase Duckworth2022-08-13 11:24:19 -0500
commit585cb8763834f8c640d6f0234fb0dddac68c8fc4 (patch)
tree5ac5688824680d8b04b4c49789d41c336e8c1ee0
parentFind files recursively by default (diff)
downloadshatom-585cb8763834f8c640d6f0234fb0dddac68c8fc4.tar.gz
shatom-585cb8763834f8c640d6f0234fb0dddac68c8fc4.zip
Don't single-quote filenames
This is probably a bad idea; I should probably fix this somewhere else.
-rwxr-xr-xshatom2
1 files changed, 1 insertions, 1 deletions
diff --git a/shatom b/shatom index 31b2fc6..ee2d676 100755 --- a/shatom +++ b/shatom
@@ -89,7 +89,7 @@ recent_files() {
89 shift 89 shift
90 90
91 find "$dir" "$@" \ 91 find "$dir" "$@" \
92 -exec stat -c '%Y %N' '{}' + | 92 -exec stat -c '%Y %n' '{}' + |
93 sort -k1,1 -nr | 93 sort -k1,1 -nr |
94 cut -d' ' -f2- 94 cut -d' ' -f2-
95} 95}