摘要:
因为不想敲写 java -jar jarfile,而是想直接敲写 ./jarfile 就能够跑起程序#!/bin/bash - #===============================================================================## ... 阅读全文
摘要:
Shell脚本:#!/bin/bashdevices=( $(adb devices|grep device$|awk '{print $1}'|xargs echo) )case ${#devices[@]} in 0 ) echo "can't found a android... 阅读全文
摘要:
有时候给别人分享一个工具的时候,同时需要提供的文件比较多;如果分享一个压缩包还得教会对方如何解压、执行哪个脚本,感觉需要传输的内容多了就不方便;把几个Shell脚本和文件打包成一个“单独的可执行文件”,对方接收到这个文件,只需要执行一下这个文件,就可以实现解压、执行对应脚本了,相对比较方便;#!/b... 阅读全文
摘要:
今天鼓捣一下CPAN,安装时出错:root@ubuntu:~# cpan install DBICPAN.pm requires configuration, but most of it can be done automatically.If you answer 'no' below, you... 阅读全文
摘要:
# 把Busybox所有的命令通过alias映射出来(若此命令不存在时)# 这么做只是为了平时敲命令行时无须额外的打 busybox (感觉很麻烦的说)for applet in $(busybox 2>&1 | busybox sed '1,/Currently defined functions... 阅读全文
摘要:
busybox_bin=/sbin/busybox# 获取PIPEget_outfd(){ if $busybox_bin ls -l /proc/self/fd/21 | $busybox_bin grep -q 'pipe'; then echo 21 else ... 阅读全文
摘要:
vi ~/.bashrc,增加一个function 1 svnlog(){ 2 svn log "$@" | awk -f <(cat <<EOF 3 #!/usr/bin/awk -f 4 5 # Convert the "svn log" output into a one liner... 阅读全文
摘要:
使用工具,privoxy,官网:http://www.privoxy.org/socks5 proxy设定方法: autossh -CgNfD 0.0.0.0:1080 vps-lxbsocks5 proxy 转换成 http proxy 方法: sudo apt-get install pri... 阅读全文
摘要:
因为个人常用办公PC是Linux,打开文件共享什么的是 smb:// 的,而不是Windows的 \\需要复制文件路径给别人的时候,发smb://给一个使用Windows办公的用户不算很得体的方法于是手工写一个简单的脚本,转换一下这些格式:1. 输入 smb:// 起始的路径,得到的是Windows... 阅读全文
摘要:
经过一天的学习,把慕课网的HTML/CSS基础知识学完了,笔记整理:1. 文件结构: HTML文件的固定结构: ... ... html是根标签 head定义文档头部,包含: title, script, style, link, met... 阅读全文