From 9817b3c29ea7dc6c5a91ab2f4bc4d7ed0dc41e97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20JAMET?= Date: Tue, 15 Jul 2025 14:27:00 +0200 Subject: [PATCH] Fix steps --- Log.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Log.md b/Log.md index 92da642..015699a 100644 --- a/Log.md +++ b/Log.md @@ -57,17 +57,17 @@ adb logcat -c 2. Create log file: - * For macOS/Linux (using grep): + * MacOS/Linux (using grep): ```bash adb logcat | grep "com.kunzisoft.keepass" > keepassdx_logs.txt ``` - * For Windows (using findstr in Command Prompt): + * Windows (using findstr in Command Prompt): ```bash adb logcat | findstr "com.kunzisoft.keepass" > keepassdx_logs.txt ``` -Note for PowerShell on Windows: PowerShell's Select-String is similar to grep. + * Windows (PowerShell's Select-String is similar to grep): ```bash adb logcat | Select-String "com.kunzisoft.keepass" > keepassdx_logs.txt ``` @@ -153,7 +153,7 @@ adb devices Most Linux distributions include ADB/Fastboot in their official repositories, making installation very simple. 1. Open Terminal and type: - #### Debian/Ubuntu-based distributions + * Debian/Ubuntu-based distributions ```bash sudo apt update sudo apt install android-sdk-platform-tools-core @@ -161,12 +161,12 @@ sudo apt install android-sdk-platform-tools-core _Some older guides might suggest `adb` or `android-tools-adb`, but `android-sdk-platform-tools-core` is generally the correct package for the latest versions._ - #### Fedora/SUSE-based distributions + * Fedora/SUSE-based distributions ```bash sudo dnf install android-tools ``` - #### Arch Linux (and derivatives like Manjaro) + * Arch Linux (and derivatives like Manjaro) ```bash sudo pacman -S android-tools ```