Skip to content

Instantly share code, notes, and snippets.

@beaulac
Created February 16, 2018 17:11
Show Gist options
  • Save beaulac/4e00697a50af6d07a664d3b83456e476 to your computer and use it in GitHub Desktop.
Save beaulac/4e00697a50af6d07a664d3b83456e476 to your computer and use it in GitHub Desktop.
(macOS) Send clipboard content to android keyboard, escaping every character.
#!/usr/bin/env bash
adb shell input text $(pbpaste | sed -e 's/\(.\)/\\\1/g')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment