mirror of https://gitlab.com/bashrc2/epicyon
Script to show missing arguments
parent
5eefbb5249
commit
6a59a9b66c
|
@ -0,0 +1,7 @@
|
||||||
|
#!/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
|
Loading…
Reference in New Issue