39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
################################################################################
 | 
						|
# Copyright 2022 Antonin Portelli 
 | 
						|
# 
 | 
						|
# This file is part of miria-cli.
 | 
						|
#
 | 
						|
# miria-cli is free software: you can redistribute it and/or modify it under 
 | 
						|
# the terms of the GNU General Public License as published by the Free Software 
 | 
						|
# Foundation, either version 3 of the License, or (at your option) any 
 | 
						|
# later version.
 | 
						|
#
 | 
						|
# miria-cli is distributed in the hope that it will be useful, but WITHOUT ANY 
 | 
						|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
 | 
						|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 | 
						|
#
 | 
						|
# You should have received a copy of the GNU General Public License along with 
 | 
						|
# miria-cli. If not, see <https://www.gnu.org/licenses/>.
 | 
						|
################################################################################
 | 
						|
 | 
						|
#!/usr/bin/env bash
 | 
						|
set -uoe pipefail
 | 
						|
 | 
						|
script_dir=$(dirname $(readlink -f $0))
 | 
						|
source ${script_dir}/functions.sh
 | 
						|
hash="$(cd ${script_dir}; git rev-parse --short HEAD)"
 | 
						|
branch="$(cd ${script_dir}; git rev-parse --abbrev-ref HEAD)"
 | 
						|
status="$(git diff --quiet || echo '(dirty)')"
 | 
						|
miria_get_url
 | 
						|
echo "Miria CLI ${branch}@${hash} ${status}"
 | 
						|
echo 'Copyright 2022 Antonin Portelli'
 | 
						|
echo 'GNU General Public License v3'
 | 
						|
echo ''
 | 
						|
echo '-- Server info -------------'
 | 
						|
miria_api_cmd getServerInfo
 | 
						|
printf '%s:%s\n' "$(miria_last_get_string '//SERVER_NAME')" \
 | 
						|
                 "$(miria_last_get_string '//SERVER_PORT')"
 | 
						|
miria_last_get_string '//TPE'
 | 
						|
miria_last_get_string '//ADA'
 | 
						|
echo '----------------------------'
 |