mirror of https://gitlab.com/bashrc2/epicyon
8 lines
210 B
Plaintext
8 lines
210 B
Plaintext
|
#!/bin/bash
|
||
|
journalctl -u epicyon | grep 'required positional arguments' > .missing_arguments.txt
|
||
|
if [ ! -f .missing_arguments.txt ]; then
|
||
|
echo 'No missing arguments'
|
||
|
else
|
||
|
cat .missing_arguments.txt
|
||
|
fi
|