One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
laragon
/
bin
/
cmder
/
vendor
/
lib
/
View File Name :
lib_profile.cmd
@echo off call "%~dp0lib_base.cmd" call "%%~dp0lib_console" set lib_profile=call "%~dp0lib_profile.cmd" if "%~1" == "/h" ( %lib_base% help "%~0" ) else if "%1" neq "" ( call :%* ) exit /b :run_profile_d :::=============================================================================== :::run_profile_d - Run all scripts in the passed dir path ::: :::include: ::: ::: call "lib_profile.cmd" ::: :::usage: ::: ::: %lib_profile% "[dir_path]" ::: :::required: ::: ::: [dir_path] <in> Fully qualified directory path containing init *.cmd|*.bat. ::: Example: "c:\bin" ::: ::: path <out> Sets the path env variable if required. :::------------------------------------------------------------------------------- if not exist "%~1" ( mkdir "%~1" ) pushd "%~1" for /f "usebackq" %%x in ( `dir /b *.bat *.cmd 2^>nul` ) do ( %print_verbose% "Calling '%~1\%%x'..." call "%~1\%%x" ) popd exit /b