mirror of
https://github.com/Catfriend1/syncthing-android.git
synced 2025-09-11 21:43:23 +08:00
41 lines
1.3 KiB
Batchfile
41 lines
1.3 KiB
Batchfile
@echo off
|
|
cls
|
|
SET SCRIPT_PATH=%~dps0
|
|
cd /d "%SCRIPT_PATH%"
|
|
REM
|
|
REM Script Consts.
|
|
REM
|
|
REM SET PACKAGE_NAME=com.github.catfriend1.syncthingandroid
|
|
SET PACKAGE_NAME=com.github.catfriend1.syncthingandroid.debug
|
|
REM
|
|
REM SET DATA_ROOT=/data/user/0
|
|
SET DATA_ROOT=/data/data
|
|
REM
|
|
:loopMe
|
|
cls
|
|
adb shell "su root cat %DATA_ROOT%/%PACKAGE_NAME%/files/config.xml" > "%SCRIPT_PATH%config.xml"
|
|
call :psConvertFileFromCRLFtoLF "%SCRIPT_PATH%config.xml"
|
|
IF EXIST "%SCRIPT_PATH%config.xml" TYPE "%SCRIPT_PATH%config.xml" | more
|
|
echo.
|
|
pause
|
|
echo.
|
|
echo ==========================================================
|
|
echo.
|
|
goto :loopMe
|
|
|
|
|
|
:psConvertFileFromCRLFtoLF
|
|
REM
|
|
REM Syntax:
|
|
REM call :psConvertFileFromCRLFtoLF [FULLFN]
|
|
REM
|
|
REM Variables.
|
|
SET TMP_PSCFFCL_FULLFN=%1
|
|
IF DEFINED TMP_PSCFFCL_FULLFN SET TMP_PSCFFCL_FULLFN=%TMP_PSCFFCL_FULLFN:"=%
|
|
REM
|
|
IF NOT EXIST %TMP_PSCFFCL_FULLFN% call :logAdd "[ERROR] psConvertFileFromCRLFtoLF: TMP_PSCFFCL_FULLFN=[%TMP_PSCFFCL_FULLFN%] does not exist." & goto :eof
|
|
REM call :logAdd "[INFO] psConvertFileFromCRLFtoLF: Converting [%TMP_PSCFFCL_FULLFN%] ..."
|
|
powershell -NoLogo -NoProfile -ExecutionPolicy ByPass -Command "Set-Content -Path '%TMP_PSCFFCL_FULLFN%' -NoNewLine -Value (Get-Content '%TMP_PSCFFCL_FULLFN%' -Raw).Replace(\"`r`n\",\"`n\")" 2> NUL:
|
|
REM
|
|
goto :eof
|