⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
local
/
src
/
netdata
/
diagrams
/
View File Name :
build.sh
#!/usr/bin/env bash # SPDX-License-Identifier: GPL-3.0-or-later path=$(dirname "$0") cd "${path}" || exit 1 if [ ! -f "plantuml.jar" ] then echo >&2 "Please download 'plantuml.jar' from http://plantuml.com/ and put it the same folder with me." exit 1 fi for x in *.puml do [ "${x}" = "config.puml" ] && continue echo >&2 "Working on ${x}..." java -jar plantuml.jar -tpng "${x}" java -jar plantuml.jar -tsvg "${x}" # java -jar plantuml.jar -ttxt "${x}" done