Commit 77e2494fbb333c40405b3deea5d43c5feb52f339

Thomas de Grivel 2020-04-10T18:25:44

fix ls syntax

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/unix/syntaxes.lisp b/unix/syntaxes.lisp
index d1ff204..5cc482d 100644
--- a/unix/syntaxes.lisp
+++ b/unix/syntaxes.lisp
@@ -42,7 +42,7 @@
 			 (#'sh-parse-integer size)
 			 (#'chronicity:parse time)
 			 name)
-  #~|^([-a-zA-Z]{10})\s+([0-9]+)\s+(\S+)\s+(\S+)\s+([0-9]+)\s+(\S+ \S+ \S+ \S+)\s+(.+)$|
+  #~|^([-a-zA-Z]{10})\s+([0-9]+)\s+(\S+)\s+(\S+)\s+([0-9]+)\s+(\S+\s+\S+ \S+ \S+)\s+(.+)$|
   "Syntax for `ls -lT` output. See ls(1)."
   (values name mode links owner group size time))