Import from old repository

This commit is contained in:
Stefan
2020-04-06 18:48:34 +02:00
commit 0da6783a45
762 changed files with 103065 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
del /q /s build dist 2> NUL
rmdir /q /s build dist 2> NUL
set PYTHONPATH=.
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\image_export.py
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\log2timeline.py
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\pinfo.py
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\plasm.py
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\pprof.py
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\preg.py
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\pshell.py
C:\Python27\python.exe ..\pyinstaller\pyinstaller.py --onedir plaso\frontend\psort.py
set PYTHONPATH=
+12
View File
@@ -0,0 +1,12 @@
@echo off
@rem Script to make sure the executables run after make_dist.bat.
dist\plaso\image_export.exe -h
dist\plaso\log2timeline.exe --info
dist\plaso\pinfo.exe -v test_data\psort_test.out
dist\plaso\plasm.exe -h
dist\plaso\pprof.exe
dist\plaso\preg.exe -h
dist\plaso\psort.exe
dist\plaso\pshell.exe
+22
View File
@@ -0,0 +1,22 @@
@echo off
del /q /s dist\plaso 2> NUL
rmdir /q /s dist\plaso 2> NUL
mkdir dist\plaso
mkdir dist\plaso\licenses
xcopy /q /y ACKNOWLEDGEMENTS dist\plaso
xcopy /q /y AUTHORS dist\plaso
xcopy /q /y LICENSE dist\plaso
xcopy /q /y README dist\plaso
xcopy /q /y config\licenses\* dist\plaso\licenses
xcopy /q /y /s dist\image_export\* dist\plaso
xcopy /q /y /s dist\log2timeline\* dist\plaso
xcopy /q /y /s dist\pinfo\* dist\plaso
xcopy /q /y /s dist\plasm\* dist\plaso
xcopy /q /y /s dist\pprof\* dist\plaso
xcopy /q /y /s dist\preg\* dist\plaso
xcopy /q /y /s dist\pshell\* dist\plaso
xcopy /q /y /s dist\psort\* dist\plaso