History log of /systemd/shell-completion/bash/journalctl
Revision Date Author Comments Expand
2720e0c0f006f9951550648b68f74d6772426f39 08-Feb-2016 Dan Walsh <dwalsh@redhat.com>

Journalctl command completion should show machines

1a51b1b1c274c8b8047f9296e4bacbd89f3f9c14 15-Nov-2015 Marcos Mello <marcosfrm@users.noreply.github.com>

shell-completion: journalctl: add --sync From 94b6551

23c35c82c43cfb0997ef6dedfd39d5acac44e7d7 11-Nov-2015 Marcos Mello <marcosfrm@users.noreply.github.com>

shell-completion: journalctl: add -S and -U options Added by 66f5292

0c66ffd8b99b9c777755c0b5e9e7de2fabe45295 30-Sep-2015 Evgeny Vereshchagin <evvers@ya.ru>

shell-completion: journalctl: add --rotate

6409d3af08f0ce42acbfd7e7978a9bbb3312511e 25-Sep-2015 Evgeny Vereshchagin <evvers@ya.ru>

shell-completion: journalctl: add missing options

023dd03a4299f3ee0889d2f8dab45ab18e2f27f0 25-Sep-2015 Evgeny Vereshchagin <evvers@ya.ru>

shell-completion: journalctl: add missing fields

b4f91f2ba354c16dc23111cc231010c975c717a2 29-Jan-2015 Carlos Morata Castillo <cmc809@inlumine.ual.es>

Updates in bash autocompletions Hi, I did ./check-undocumented.sh -b (my script just submitted) and checked the results. Cheers.

e4e5a85f34db9b18a5ae84a659fcdaf7e494dec1 09-Jan-2015 Ronny Chevalier <chevalier.ronny@gmail.com>

shell-completion: add missing output modes https://bugs.freedesktop.org/show_bug.cgi?id=88216

be8f4a9fa732d61e845e1ab1a62ac3a6b368d3a7 20-Jul-2014 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>

bash-completion: -p option for journalctl

b68b76897aca23f613afdc39a760992c711a7671 26-Dec-2013 Lennart Poettering <lennart@poettering.net>

Revert "completion: don't offer completions for journalctl -b" This reverts commit c756a6d57cdb678b702c68913dae3e11ff0427ae.

c756a6d57cdb678b702c68913dae3e11ff0427ae 25-Dec-2013 Dave Reisner <dreisner@archlinux.org>

completion: don't offer completions for journalctl -b Since this is a shortopt with an optional argument, assume the user knows what they're doing. The longopts --boot and --this-boot will continue to offer boot IDs as completions.

7524c3cf4485bb9afd4ef0bf005a89f0319c19cd 16-Nov-2013 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>

bash-completion: journalctl --file

f11880744c27209a42f502c690db86b38d2db14b 29-Oct-2013 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>

journalctl: add --list-boots to show boot IDs and times Suggested by David Wilkins <dwilkins@maths.tcd.ie> in https://bugzilla.redhat.com/show_bug.cgi?id=967521: > [Specific boot ID is a] bit of a palaver to obtain. I consulted the > verbose dump of the journal to discover the _BOOT_ID for the > timestamp, and then generated the journal dump for that boot using > journalctl _BOOT_ID=foo -o short-monotonic.

a72d698d0d9ff9c158155b44cdc77376df31a317 30-Jul-2013 Dave Reisner <dreisner@archlinux.org>

bash-completion: use a better definition of __contains_word - scope the iterator var - use the correct, quoted, non-expansion prone positional parameter notation - prevent expansion on RHS of comparison - remove unneeded explicit returns. This really should be defined only once...

a331b5e6d4724365bad9edeb9420c7e26e7f50da 16-Jul-2013 Jan Janssen <medhefgo@web.de>

journalctl: Add support for showing messages from a previous boot Hi, I redid the boot ID look up to use enumerate_unique. This is quite fast if the cache is warm but painfully slow if it isn't. It has a slight chance of returning the wrong order if realtime clock jumps around. This one has to do n searches for every boot ID there is plus a sort, so it depends heavily on cache hotness. This is in contrast to the other way of look-up through filtering by a MESSAGE_ID, which only needs about 1 seek + whatever amount of relative IDs you want to walk. I also have a linked-list + (in-place) mergesort version of this patch, which has pretty much the same runtime. But since this one is using libc sorting and armortized allocation, I prefer this one. To summarize: The MESSAGE_ID way is a *lot* faster but can be incomplete due to rotation, while the enumerate+sort will find every boot ID out there but will be painfully slow for large journals and cold caches. You choose :P Jan

3f3a438f58d7b1d2ba2b44d6d356fb1eaa65b66a 10-Jun-2013 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>

journalctl: add --system/--user flags --user basically gives messages from your own systemd --user services. --system basically gives messages from PID 1, kernel, and --system services. Those two options are not exahustive, because a priviledged user might be able to see messages from other users, and they will not be shown with either or both of those flags.

1535fb73799f1c6079e8329af5d710bf9d55cbaf 19-Mar-2013 Harald Hoyer <harald@redhat.com>

shell-completion/bash/journalctl: suppress stderr

d611dadcc74db10ba533ee6859308f5fc505aee1 03-Mar-2013 Michael Biebl <biebl@debian.org>

bash-completion: split completions and move to new location Split the large bash completion script into separate, smaller files each named after the binary it is used for and move the files to /usr/share/bash-completion/completions. This way the completions can be loaded on demand and we only install the completions for the tools we actually build. The old path /etc/bash_completion.d/ is deprecated and will disappear in the future.