Guest User

Untitled

a guest
Nov 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ### Input text from keyboard to device
  2. adb shell 'input text "text to be input"'
  3.  
  4. ### Example of replace text
  5. git grep -l 'fill_parent' | xargs sed -i '' -e 's/fill_parent/match_parent/g'
  6.  
  7. ### Delete all branch except develop and master
  8. git branch | grep -v "master" | grep -v "develop" | xargs git branch -D
Add Comment
Please, Sign In to add comment