diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2020-03-17 15:43:37 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2020-03-17 15:43:37 +0100 |
| commit | c291596bce2b3be0cf7a500ca9647fdd3ee77bed (patch) | |
| tree | 588113d99edc903b46c47800af10703673fa9280 | |
| parent | 382eb1f4225d681629f7a34c31737b8e2a71ef89 (diff) | |
| download | g-c291596bce2b3be0cf7a500ca9647fdd3ee77bed.tar.gz g-c291596bce2b3be0cf7a500ca9647fdd3ee77bed.zip | |
t: make sure that the output is always sorted
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
| -rw-r--r-- | t/test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,8 +36,8 @@ g rm lala lala &>> /output.txt set -e # The list command. -g list --keys &>> /output.txt -g list | awk '{ print $1 }' | xargs &>> /output.txt +g list --keys | xargs -n1 | sort | xargs &>> /output.txt +g list | awk '{ print $1 }' | sort | xargs &>> /output.txt # Bare g command. cd / |
