1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 03:15:37 +02:00

am: add mnemonics (#9639)

This commit is contained in:
Emily Grace Seville 2023-01-02 21:08:10 +10:00 committed by GitHub
parent c71cf5803e
commit 97b0abb633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,11 +7,11 @@
`am start -n {{com.android.settings/.Settings}}`
- Start an activity and pass data to it:
- Start an activity and pass [d]ata to it:
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
- Start an activity matching a specific action and category:
- Start an activity matching a specific action and [c]ategory:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`