Skip to content

Instantly share code, notes, and snippets.

View kimkevin's full-sized avatar

Kevin YongJun Kim kimkevin

View GitHub Profile
@kimkevin
kimkevin / actionlist.vim
Created March 20, 2018 14:51
Android Studio Actionlist
$Copy <M-C>
$Cut <M-X> <S-Del>
$Delete <Del> <BS> <M-BS>
$LRU
$Paste <M-V>
$Redo <M-S-Z> <A-S-BS>
$SearchWeb
$SelectAll <M-A>
$Undo <M-Z>
About
@kimkevin
kimkevin / test_summary_parsing.sh
Created March 26, 2018 15:44
Parsing summary group in index.html of test report
#!/bin/bash
get_value() {
value=$(echo $1 | sed "s/.*\>\(.*\)\<.*/\1/")
}
summary=$(grep -A1 "infoBox" test.html | sed -e "s/--//g" | tr '\n' " " | perl -p -e 's/\s\s/\n/g')
while read -r line; do
if [ "$line" ];