Changes between Initial Version and Version 5 of Ticket #17
- Timestamp:
- 03/13/12 16:00:19 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17
- Property Component Installer → Package
- Property Keywords gdal-python added
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #17 – Description
initial v5 1 1 this cmd snippet will generate a batch file for all the python scripts in the bin directory. It could be included as part of ''python'' and ''gdal-python'' packages. 2 2 {{{ 3 for %%g in (*.py) do (@python "%%OSGEO4W_ROOT%%\bin\%%g" %%* > %%~ng.bat)3 for %%g in (*.py) do echo @python "%%OSGEO4W_ROOT%%\bin\%%g" %%* > %%~ng.bat 4 4 }}}