diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-12-23 02:58:04 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-12-23 02:58:04 +0300 |
commit | 0d1413c54981d1dde9244b032688b3b814bd460f (patch) | |
tree | 8e5715442ab5d21200c45427969e50b4a2658573 | |
parent | add list_manually_installed_packages_ubuntu (diff) | |
download | linux-home-0d1413c54981d1dde9244b032688b3b814bd460f.tar.gz linux-home-0d1413c54981d1dde9244b032688b3b814bd460f.zip |
list_packages_cygwin: skip header lines
-rw-r--r-- | %HOME%/.bashrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index 33fe277..83f3599 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -73,6 +73,7 @@ list_packages_cygwin() ( set -o errexit -o nounset -o pipefail cygcheck --check-setup --dump-only \ + | tail -n +3 \ | cut -d ' ' -f 1 ) |