git.annexia.org
/
goals.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3258e69
)
stdlib: Disable echo on split command.
author
Richard W.M. Jones
<rjones@redhat.com>
Sun, 12 Jan 2020 21:51:21 +0000
(21:51 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Sun, 12 Jan 2020 21:51:21 +0000
(21:51 +0000)
Fixes commit
17dc1d6e0ec8f194df3dd74a7033303ad9ff739c
.
stdlib/prelude.gl
patch
|
blob
|
history
diff --git
a/stdlib/prelude.gl
b/stdlib/prelude.gl
index
04dde93
..
836b5c4
100644
(file)
--- a/
stdlib/prelude.gl
+++ b/
stdlib/prelude.gl
@@
-108,7
+108,7
@@
pure function sort (xs) returning strings = @{
# Split a string into a list.
# https://superuser.com/a/1066541
-pure function split (s) returning strings = {
+pure function split (s) returning strings =
@
{
s=%s
eval 'for f in '$s'; do echo "$f"; done'
}