This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
SETLOCAL EnableDelayedExpansion | |
rem. | |
rem Testing availability of external programs | |
rem. | |
set "THEGNUBIN=C:\Program Files (x86)\GnuWin32\bin" | |
where /q "%THEGNUBIN%:find.exe" || ECHO Could not find GNUWin32 find.exe && EXIT /B | |
where /q "%THEGNUBIN%:date.exe" || ECHO Could not find GNUWin32 date.exe && EXIT /B | |
rem. | |
rem DAYSKEEP : n. di giorni da mantenere |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem | |
SETLOCAL EnableDelayedExpansion | |
rem. | |
rem | |
rem FUNZIONE DELLO SCRIPT - Da posizionare in CATALINA_BASE\bin | |
rem #@# STOP Tomcat Service -> move/zip LOGS -> Restart Tomcat Service | |
rem IMPOSTAZIONI: | |
rem CATALINA_BASE = Directory di (questa istanza di) Tomcat | |
rem TOMSVCNAME = Nome del servizio Tomcat corrisponedente a questa directory "bin" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
#--- Path dello script ridefinito esplicitamente | |
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin | |
#--- Directory base su cui avviene la scansione | |
export THEBASEDIR=/home/e-progen/experica/experica | |
#--- Data corrente | |
export THEDATE=$(date +%Y%m%d) | |
#--- URLPART: Componenti url (da completare con l'ambiente) | |
URLBASE=http://127.0.0.1:8080 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
#--- Path dello script ridefinito esplicitamente | |
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin | |
#--- Directory base su cui avviene la scansione | |
export THEBASEDIR=/home/e-progen/experica/experica | |
#--- Data corrente | |
export THEDATE=$(date +%Y%m%d) | |
#--- URLPART: Componenti url (da completare con l'ambiente) | |
URLBASE=http://127.0.0.1:8080 |