摘要: 1、创建MySQL2Sqlite脚本mysql2sqlite.sh:(代码地址:https://gist.github.com/esperlu/943776)#!/bin/sh # Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the# CREATE block and create them in separate commands _after_ all the INSERTs. # Awk is choosen because i 阅读全文
posted @ 2013-09-01 20:39 LeverLiu 阅读(1557) 评论(0) 推荐(1) 编辑
摘要: 1、在Unity3d中, 创建导出 iOS、Android 项目脚本 PerformBuild.cs ,放在Editor目录下(必须),如下:using UnityEditor;using System.IO;using System.Collections;using UnityEngine;using System.Collections.Generic; class PerformBuild{ static string[] GetBuildScenes() { List names = new List(); foreach(EditorBui... 阅读全文
posted @ 2013-09-01 19:03 LeverLiu 阅读(12634) 评论(4) 推荐(2) 编辑