240 发简信
IP属地:澳门
  • Git 批量Revert

    git checkout HEADgit reset --mixed branchgit checkout branchgit commit -...

  • Resize,w 360,h 240
    iOS 布局

    The update cycle is the point at which control returns to the main run l...

  • Block 定义

    一、基本定义 二、属性定义 三、函数传参数

  • Shell 常用判断

    if ! [ -r "$binary" ]; thenbinary="${destination}/${basename}"fi [ -f "s...

  • shell tail

    tail 命令从指定点开始将文件写到标准输出.使用tail命令的-f选项可以方便的查阅正在改变的日志文件,tail -f filename会把f...

  • 四种常见的 POST 提交数据方式

    HTTP/1.1 协议规定的 HTTP 请求方法有 OPTIONS、GET、HEAD、POST、PUT、DELETE、TRACE、CONNECT...

  • shell 目录下检索字符串

    查找目录下的所有文件中是否含有某个字符串,并且只打印出文件名find . -name "*.type" | xargs grep -ri "st...