22 lines
568 B
Batchfile
22 lines
568 B
Batchfile
@echo off
|
|
|
|
rem ######################################
|
|
rem # ks-tools for Windows #
|
|
rem # U. Modificacion: 22-01-2022 #
|
|
rem # Author: q3aql #
|
|
rem # Contact: q3aql@duck.com #
|
|
rem # License: GPL v2.0 #
|
|
rem ######################################
|
|
set VERSION=8.2
|
|
|
|
rem # Start ks-tools terminal (bash)
|
|
cd "%~d0%~p0"
|
|
mkdir home\%USERNAME%
|
|
mkdir tmp
|
|
copy /Y prompt\.bashrc home\%USERNAME%
|
|
copy /Y prompt\.minttyrc home\%USERNAME%
|
|
cls
|
|
set PATH=%PATH%;%~d0%~p0\bin
|
|
bin\bash.exe
|
|
rem bash
|