摘要: -- bash help ------------------------------------------ \hb Displays the Bash manual (n, i) \hh Displays help for the builti... 阅读全文
posted @ 2013-03-04 18:48 scue 阅读(1657) 评论(0) 推荐(0) 编辑
摘要: $ sudo apt-get install cscope$ cscope --help$ Usage: cscope [-bcCdehklLqRTuUvV] [-f file] [-F file] [-i file] [-I dir] [-s dir] [-p number] [-P path] [-[0-8] pattern] [source files]-b Build the cross-reference only.-C Ignore letter case when searching.-c ... 阅读全文
posted @ 2013-03-04 14:27 scue 阅读(1965) 评论(0) 推荐(0) 编辑
摘要: style "gtkcompact" {font_name="Ubuntu 9"GtkButton::default_border={0,0,0,0}GtkButton::default_outside_border={0,0,0,0}GtkButtonBox::child_min_width=0GtkButtonBox::child_min_heigth=0GtkButtonBox::child_internal_pad_x=0GtkButtonBox::child_internal_pad_y=0GtkMenu::vertical-padding=1 阅读全文
posted @ 2013-03-03 21:35 scue 阅读(1253) 评论(0) 推荐(0) 编辑
摘要: 1. 简单一点,直接输入env LANGUAGE=zh_CN.UTF-8 grep --help2. 写成一个脚本文件,以后方便直接调用;#!/bin/bash#version:0.1#文件名称:~/bin/cnenv.sh#实现功能:英文环境下,临时以简体中文打开应用程序env LANGUAGE=... 阅读全文
posted @ 2013-02-22 17:15 scue 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1. 荣耀2相关信息:shell@android:/ # df Filesystem Size Used Free Blksize/dev 864M 64K 864M 4096/mnt/asec 864M 0K 864M 4096/mnt/obb 864M 0K 864M 4096/system 881M 438M 443M 4096/cache 25... 阅读全文
posted @ 2013-02-19 11:14 scue 阅读(1823) 评论(0) 推荐(0) 编辑
摘要: #!/system/bin/sh#version:0.1#author:linkscue#前提条件:系统为ICS或JB、安装有busybox;#提醒建议:在终端上输入可能会太长导致出错,建议保存成sh文件运行;#请指定挂载点的名称point=systemdev=$( busyboxmount | busyboxgrep $point | busyboxawk '{print $1}'| busyboxawk -F'/' '{print $4}')size=$(($( busyboxcat /proc/partitions | busyboxgre 阅读全文
posted @ 2013-02-19 09:39 scue 阅读(595) 评论(0) 推荐(0) 编辑
摘要: #!/system/bin/sh# Version: 0.3# Author:linkscue# E-mail:linkscue@gmail.com# Funtion: init the first boot# Filename: /system/etc/init.d/99firstbootif [[ -e /data/system/first_boot ]]; then echo "this is not first boot." exit 1fimount -o remount,rw /dev/block/mmcblk0p17 /system#1. VIM(init)i 阅读全文
posted @ 2013-02-19 08:29 scue 阅读(395) 评论(0) 推荐(0) 编辑
摘要: #!/bin/basholdwd=$(pwd)rl_self=$(readlink -f $0)dir_self=$(dirname $rl_self)echo ""echo "directory self is $dir_self" 阅读全文
posted @ 2013-02-17 14:17 scue 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 由于自己比较懒,不想去一个个地去PS图片的大小,同时想利用别人已制作出来的资源文件;先做以下假定:1. 假定当前目录下有xhdpi的资源原始文件(用于获取它们的图片大小);2. 假定当前目录下有hdpi这个文件夹,保存着别人已做好的美化资源文件;现在把hdpi/目录下的美化文件批量转换到当前目录下,转换后大小由当前目录的原始文件来决定;for n in $(ls -1 *.png);do a=$(file $n | awk -F',' '{print $2}' | sed '{s/ //g}'); convert -resize $a hdpi/ 阅读全文
posted @ 2013-02-15 11:41 scue 阅读(2377) 评论(0) 推荐(0) 编辑
摘要: convert input.png -alpha set -channel A -evaluate set 50% output.png 阅读全文
posted @ 2013-02-14 20:39 scue 阅读(926) 评论(0) 推荐(0) 编辑