mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 14:53:59 +02:00
adb: add French translation (#6680)
This commit is contained in:
parent
ab21c0dfed
commit
609b1ce284
1 changed files with 33 additions and 0 deletions
33
pages.fr/common/adb.md
Normal file
33
pages.fr/common/adb.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# adb
|
||||
|
||||
> Android Debug Bridge: Communiquer avec une instance d'émulateur Android ou un appareil Android.
|
||||
> Certaines commandes comme `adb shell` ont leur propre documentation.
|
||||
> Plus d'informations: <https://developer.android.com/studio/command-line/adb>.
|
||||
|
||||
- Vérifie si le processus du serveur adb est en fonctionnement et le démarre :
|
||||
|
||||
`adb start-server`
|
||||
|
||||
- Arrête le processus du serveur adb :
|
||||
|
||||
`adb kill-server`
|
||||
|
||||
- Démarre un shell distant sur l'émulateur/l'appareil ciblé :
|
||||
|
||||
`adb shell`
|
||||
|
||||
- Pousse une application Android vers l'émulateur/l'appareil :
|
||||
|
||||
`adb install -r {{chemin/vers/le/fichier.apk}}`
|
||||
|
||||
- Copie un fichier/dossier depuis l'appareil ciblé :
|
||||
|
||||
`adb pull {{chemin/vers/le/fichier_ou_dossier_de_l'appareil}} {{chemin/vers/le/dossier_de_destination_local}}`
|
||||
|
||||
- Copie un fichier/dossier vers l'appareil ciblé :
|
||||
|
||||
`adb push {{chemin/vers/le/fichier_ou_dossier_local}} {{chemin/vers/le/dossier_de_destination_de_l'appareil}}`
|
||||
|
||||
- Récupère une liste des appareils connectés :
|
||||
|
||||
`adb devices`
|
Loading…
Add table
Reference in a new issue