This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo strace -e trace=network -p `pgrep -x sogou-qimpanel` -s 100000 -f -ff -o sogou |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n=0 | |
PATTERN=ti-linux-4.14.y | |
while read line; do | |
hash=`echo "$line" | cut -f1 -d' '` | |
nn=`git show "$hash" | head -2 | tail -1 | awk '{ print $2".."$3 }' | xargs git log --pretty=oneline | wc -l` | |
echo "$nn": "$line" | |
n=$(($n + $nn)) | |
done <<< "$(git log --grep 'Merge branch' --abbrev-commit --pretty=oneline | grep $PATTERN)" | |
echo "Total number of commits:" $n |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
[ $UID != 0 ] && echo "Must run as root" && exit | |
i=1 | |
RUNS=3 | |
if [ -n "$1" ]; then | |
RUNS=$1 | |
fi | |
while [ $i -le $RUNS ]; do | |
d=`date +%Y%m%d-%H%M` |
OlderNewer