index
:
moreutils
master
implementations of the non-POSIX utilities included in GNU coreutils
summary
refs
log
tree
commit
diff
log msg
author
committer
range
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
-rwxr-xr-x
factor
2
1 files changed, 1 insertions, 1 deletions
diff --git a/factor b/factor
index c40e0f4..ab6a72e 100755
--- a/
factor
+++ b/
factor
@@ -21,7 +21,7 @@ factor() {
}
if [ -z "$*" ]; then
- while read -r i; do
+ while IFS=\n read -r i; do
factor $i
done
else