Post History
Not directly, no. The argument -b only accepts a single id and using it multiple times only results in the last one being used. You can however loop easily over the file and get the output of all ...
Answer
#1: Initial revision
Not directly, no. The argument `-b` only accepts a single id and using it multiple times only results in the last one being used. You can however loop easily over the file and get the output of all consecutive `journalctl -b` runs in a single less: ```shell while read BOOTID; do journalctl -b $BOOTID; done < boot.txt |less ```