精华 | |
金钱 | BA |
威望 | 点 |
贡献值 | 点 |
爱心 | 点 |
经验 | 点 |
注册时间 | 2009-3-24 |
最后登录 | 1970-1-1 |
在线时间 | 小时 |
| |
| |
| |
|
立即注册,加入爱黑武论坛的大家庭!爱黑武,爱上搞机生活!
您需要 登录 才可以下载或查看,没有账号?注册
x
situr刚刚发的截图工具0.3
夏修改的 帮他发上来
解开mpkg....找到shot文件,用Notepad++或者UE32打开
原版脚本#!/bin/sh #这个是shell的开头
if [ -f $LX_PATH/etc/preload ]; then# 这句是如果有/ezxlocal/LinXtend/etc/preload这个文件
. $LX_PATH/etc/initenv2 # 就将这个 /ezxlocal/LinXtend/etc/initenv2 文件定义为环境变量
fi
`dirname \"$0`/Screenshoter# `dirname \"$0`是找到当前文件夹.运行Screenshoter 改成以下脚本#!/bin/sh
start=/ezxlocal/LinXtend/usr/lib/libezxapp.so # Z6的libezxappbase.so.1.0.0
if [ -f $start ] ; then#如果有 $start 这个文件
export LD_PRELOAD=$start # 定义 $start 为LD_PRELOAD
fi
this_path=`dirname \"$0` # 当前文件夹
cd $this_path # 切换到 当前文件夹
./screenshot # 运行screenshot |
|