[Touch-packages] [Bug 1846844] [NEW] Procps: top -b does not display the correct CPU percentages

2019-10-04 Thread Simon Tideswell
Public bug reported: Affects: 2:3.3.12-3ubuntu1.2 (bionic) & 2:3.3.10-4ubuntu2.4 (xenial) If I run 'top -b -n 1' the CPU percentages are the same every single time. If I run with more iterations the CPU percentages of subsequent iterations update in real time. If I run top interactively then the

[Touch-packages] [Bug 1760358] Re: Bash read into array is not working

2018-08-16 Thread Simon Tideswell
Ah!!! Actually, this does work, $ simon=( $( ls -1 /usr ) ) $ echo ${#simon[@]} 8 $ echo ${simon[@]} bin games include lib local sbin share src This will still cause scripts in the wild to break. But at least there's a workaround. Simon -- You received this bug notification because you are a

[Touch-packages] [Bug 1760358] Re: Bash read into array is not working

2018-08-16 Thread Simon Tideswell
Hello This still affects Bionic final release version: Ubuntu 18.04.1 LTS, bash 4.4.19(1). Using bash's array capabilities in this way is extremely useful and being unable to use it makes bash scripting much harder work. I'm surprised such a serious issue remains unfixed some 4 months after

[Touch-packages] [Bug 1760358] [NEW] Bash read into array is not working

2018-03-31 Thread Simon Tideswell
Public bug reported: This issue is found in the Bionic Beaver (Ubuntu 18) beta. How it should work (e.g. on Xenial) --- $ read -a simon <<< $( ls -1 /usr ) $ echo ${#simon[@]} 9 $ echo ${simon[@]} bin games include lib local sbin share src var How it works