12 lines
345 B
Bash
Executable File

#!/bin/bash
if [ ! -f "$DEVICE.conf" ]; then
echo "No configuration: Use command 'init' to create configuration files"
exit 1
fi
echo "Configurations - sorted by creation date"
echo
echo "Server"
cat "$DEVICE.conf" | grep -e "# Client" -e "# <-" | grep -a "#" | sed "s/# //" | sed "s/<- //" | sed "s/\(.*\)\([0-9]\{4\}\)/Created: \1\2\n/"