用shell写了个递归遍历目录的脚本,本脚本实现递归遍历指定目录,打印目录下的文件名(全路径)。#!/bin/sh function scandir() {
local cur_dir parent_dir workdir workdir=$1 cd ${workdir} if [ ${w...
分类:
其他好文 时间:
2014-07-22 23:14:53
阅读次数:
563
编写资源文件导出bat@echo offset DIR=%~dp0set
APP_ROOT=%DIR%..\set APP_ANDROID_ROOT=%DIR%set COCOS2DX_ROOT=%DIR%..\..\..\rem
echo configecho - config:echo AN.....
分类:
系统相关 时间:
2014-07-22 23:14:33
阅读次数:
556
$_$PROCESS_ID$$read a file line by
line#!/usr/bin/perluse strict;use warnings;my $dir ="./tmp";open (FH, ") {print
"$_";}
分类:
其他好文 时间:
2014-07-22 23:09:35
阅读次数:
293
apk file 其实就是zip文件, 可以将其重命名为zip文件,然后用unzip命令解压。unzip example1.apk -d ./example_dir
tree
.
├── AndroidManifest.xml
├── classes.dex
├── META-INF
│ ├── CERT.RSA
│ ├── CERT.SF
│ └── MANIFEST.MF
├── ...
分类:
移动开发 时间:
2014-05-05 13:12:59
阅读次数:
469
在memory.c里面有这么一段代码。为了其中的一句话,让我内牛满面啊!
dir = (unsigned long *) ((from>>20) & 0xffc)
int free_page_tables(unsigned long from,unsigned long size)
{
unsigned long *pg_table;
unsigned long...
分类:
系统相关 时间:
2014-05-04 18:22:41
阅读次数:
459
1、基础的命令ver或cmd:查看当前系统版本md/rd
hack:创建/删除目录dir:列文件more 文件:使用管道查看文件net start/stop 服务名:启动/关闭服务net stop
sharedaccess:关闭防火墙netstat -an:查看开发端口netstat -anb:查看...
sed‘s/^/\//g‘4行首增加指定字符提取网页中的播放地址:#!/bin/bash
printf"enteryourdir:"
readdir
echo"$dirisxx"
cd$dir
echo`pwd`
forfilein`ls.`
do
if[-d$file];then
echo$file
cd$file
echo`pwd`
tree`pwd`|grepplay|sed‘s/.*//g‘>11
tree`pwd`|grepplay|sed‘s/.*//g..
分类:
其他好文 时间:
2014-05-03 00:53:15
阅读次数:
336
首先用package system安装android-mode, 然后编辑~/.emacs.d/init.el文件,添加下面几行:(require 'android-mode)
(setq android-mode-sdk-dir "/opt/android-sdk-linux/")现在重新启动emacs,然后M-x 中运行命令android-start-emulator此时会提示输入Androi...
分类:
移动开发 时间:
2014-05-02 22:49:40
阅读次数:
561
从javascript的角度上看,因为语言的关系,是不能从文件夹读取文件的。但是,我们可以同activeX的方法来获取后,传递给javascript使用。详细代码如下:
1 var fileNameArray = []; 2 function searchFiles1(dir){ 3 if ...
分类:
其他好文 时间:
2014-04-30 17:33:55
阅读次数:
347
在DOS的批处理中,有时候需要知道当前的路径。在DOS中,有两个环境变量可以跟当前路径有关,一个是%cd%,
一个是%~dp0。 这两个变量的用法和代表的内容一般是不同的。 1. %cd% 可以用在批处理文件中,也可以用在命令行中;展开后,是驱动器盘符:+当前目录,如:
在 c:/dir 下,Bat...
分类:
其他好文 时间:
2014-04-29 22:49:08
阅读次数:
606