mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 17:59:11 +08:00
10 lines
166 B
Batchfile
10 lines
166 B
Batchfile
@echo off
|
|
IF [%1] == [] (
|
|
REM -- manually opened console (Ctrl + Shift + `) --
|
|
CALL "%~dp0..\init.bat"
|
|
) ELSE (
|
|
REM -- task --
|
|
CALL cmd %*
|
|
exit
|
|
)
|