Revising scripts cmd64.bat, cygwin64.bat and msys64.bat
This commit is contained in:
parent
b7a9320e8b
commit
cab9c56b4e
@ -182,9 +182,8 @@ I use the following batch file to start cmd.exe. I do this to reduce the comple
|
|||||||
```bat
|
```bat
|
||||||
@echo off
|
@echo off
|
||||||
setlocal
|
setlocal
|
||||||
cd %HOMEPATH%
|
set "PATH=C:\Python37\;C:\Python37\Scripts;C:\Perl64\site\bin;C:\Perl64\bin;C:\WINDOWS\system32;C:\Program Files\Git\cmd;C:\Program Files\Git\usr\bin;c:\Program Files\cmake\bin;"
|
||||||
set "PATH=C:\Python34\;C:\Python27\;C:\Python27\Scripts;C:\Perl64\site\bin;C:\Perl64\bin;C:\WINDOWS\system32;C:\Program Files\Git\cmd;C:\Program Files\Git\usr\bin;c:\Program Files\cmake\bin;"
|
cmd /S /K cd %HOMEDRIVE%%HOMEPATH%
|
||||||
cmd
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Profiles for Visual Studio
|
### Profiles for Visual Studio
|
||||||
|
|||||||
17
README.md
17
README.md
@ -758,13 +758,12 @@ I use the following batch file to start the MinGW/msys2 64 bit bash shell from t
|
|||||||
```bat
|
```bat
|
||||||
@echo off
|
@echo off
|
||||||
setlocal
|
setlocal
|
||||||
set "PS1=\! MSYS64:\u@\h:\w \$ "
|
set "PATH=c:\msys64\usr\bin;c:\msys64\usr\local\bin;"
|
||||||
set PATH="/usr/local/bin/:/usr/bin:/mingw64/bin:/bin:/usr/sbin:/sbin"
|
set "PS1=\! MSYS \u@\h:\w \$ "
|
||||||
set "HOME=c:\msys64\home\%USERNAME%"
|
set "HOME=c:\msys64\home\rmills"
|
||||||
if NOT EXIST %HOME% mkdir %HOME%
|
if NOT EXIST %HOME% mkdir %HOME%
|
||||||
cd %HOME%
|
cd %HOME%
|
||||||
c:\msys64\usr\bin\bash.exe -norc
|
c:\msys64\usr\bin\bash.exe -norc
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Install MinGW Dependencies
|
#### Install MinGW Dependencies
|
||||||
@ -822,12 +821,11 @@ I use the following batch file "cygwin64.bat" to start the Cygwin/64 bash shell
|
|||||||
```bat
|
```bat
|
||||||
@echo off
|
@echo off
|
||||||
setlocal
|
setlocal
|
||||||
|
set "PS1=\! CYGWIN \u@\h:\w \$ "
|
||||||
set "PATH=c:\cygwin64\usr\local\bin;c:\cygwin64\bin;c:\cygwin64\usr\bin;c:\cygwin64\usr\sbin;"
|
set "PATH=c:\cygwin64\usr\local\bin;c:\cygwin64\bin;c:\cygwin64\usr\bin;c:\cygwin64\usr\sbin;"
|
||||||
if NOT EXIST %HOME% mkdir %HOME%
|
|
||||||
set "HOME=c:\cygwin64\home\rmills"
|
set "HOME=c:\cygwin64\home\rmills"
|
||||||
cd %HOME%
|
cd %HOME%
|
||||||
set "PS1=\! CYGWIN64:\u@\h:\w \$ "
|
c:\cygwin64\bin\bash.exe -norc
|
||||||
bash.exe -norc
|
|
||||||
```
|
```
|
||||||
|
|
||||||
[TOC](#TOC)
|
[TOC](#TOC)
|
||||||
@ -848,9 +846,8 @@ I use the following batch file to start cmd.exe. I do this to reduce the comple
|
|||||||
```bat
|
```bat
|
||||||
@echo off
|
@echo off
|
||||||
setlocal
|
setlocal
|
||||||
cd %HOMEPATH%
|
set "PATH=C:\Python37\;C:\Python37\Scripts;C:\Perl64\site\bin;C:\Perl64\bin;C:\WINDOWS\system32;C:\Program Files\Git\cmd;C:\Program Files\Git\usr\bin;c:\Program Files\cmake\bin;"
|
||||||
set "PATH=C:\Python37\;C:\Python27\;C:\Python27\Scripts;C:\Perl64\site\bin;C:\Perl64\bin;C:\WINDOWS\system32;C:\Program Files\Git\cmd;C:\Program Files\Git\usr\bin;c:\Program Files\cmake\bin;"
|
cmd /S /K cd %HOMEDRIVE%%HOMEPATH%
|
||||||
cmd
|
|
||||||
```
|
```
|
||||||
|
|
||||||
[TOC](#TOC)
|
[TOC](#TOC)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user