summaryrefslogtreecommitdiff
path: root/build-aux/mktempd
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2018-01-03 13:29:49 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2018-01-03 13:30:08 -0800
commit7e7c5c7952b7de1e33c8eba891cc425d5d8d7803 (patch)
treedb4761bcac77acfe1d9801ca899a7a722ec4db75 /build-aux/mktempd
parent3206134a2f02082166ec77643679e631222d8b54 (diff)
downloadgnulib-7e7c5c7952b7de1e33c8eba891cc425d5d8d7803.tar.gz
test-framework-sh: ‘ps -ef’, not ‘ps ef’
* tests/init.sh (rand_bytes_): Put ‘-’ before new-style ps options. Suggested by Bob Proulx (Bug#29968). * build-aux/mktempd (rand_bytes): Make it like tests/init.sh.
Diffstat (limited to 'build-aux/mktempd')
-rwxr-xr-xbuild-aux/mktempd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/mktempd b/build-aux/mktempd
index 7c9d7d6838..afa4c22a3d 100755
--- a/build-aux/mktempd
+++ b/build-aux/mktempd
@@ -49,7 +49,7 @@ rand_bytes()
return
fi
- cmds='date; date +%N; free; who -a; w; ps auxww; ps ef; netstat -n'
+ cmds='date; date +%N; free; who -a; w; ps auxww; ps -ef'
data=` (eval "$cmds") 2>&1 | gzip `
n_plus_50=`expr $n + 50`