Redian新闻
>
下載S501/S401/m400解鎖懶人包+Tomtom,Garmin,iGO8(新增)
avatar
下載S501/S401/m400解鎖懶人包+Tomtom,Garmin,iGO8(新增)# PDA - 掌中宝
r*y
1
what is the difference between parsing the parameter here?
in ./test input, I can use $1 in the test script to denote the input
How to parse input in ./test < input ?
thanks
avatar
d*y
2
新增iGO8.3.4.102680 with TTS
http://www.megaupload.com/?d=452VLZUB
http://www.megaupload.com/?d=DL4WZ4DS
http://www.megaupload.com/?d=09OUU8V2
pw: 1234567
content中dem, building, poi, map是空的, 請另尋
=============================================================
請先備份您的Flash ROM裏所有的files and folders到PC中
pw: 1234567
S501
http://www.megaupload.com/?d=NM62Y59U
Garmin
http://www.megaupload.com/?d=KT2F5TGR
TomTom
http://www.megaupload.com/?d=H6G3BNRM
M400
http://www.megaupload.com/?d=Y5BLAE7E
S501.rar是解鎖檔, m4
avatar
l*n
3
./test < input的话, 你的程序不会知道input的存在

【在 r*******y 的大作中提到】
: what is the difference between parsing the parameter here?
: in ./test input, I can use $1 in the test script to denote the input
: How to parse input in ./test < input ?
: thanks

avatar
k*g
4
及时雨啊!
先顶一个,赞楼主
avatar
r*y
5
what is the way to do at this time?
for example:
//test
cat $1
cat $1
then ./test input will display input twice
but ./test < input only display input once
If I want to use ./test < input and display input twice,
when what should I do ?
Thanks.

【在 l******n 的大作中提到】
: ./test < input的话, 你的程序不会知道input的存在
avatar
c*d
6
赞一个先。
avatar
l*n
7
这样可以:
cat $1 > tmp
cat tmp
cat tmp
rm -f tmp
不过这是一种很不robust的用法.

【在 r*******y 的大作中提到】
: what is the way to do at this time?
: for example:
: //test
: cat $1
: cat $1
: then ./test input will display input twice
: but ./test < input only display input once
: If I want to use ./test < input and display input twice,
: when what should I do ?
: Thanks.

avatar
j*r
8
很好用,多谢了。
avatar
K5
9
you have two cats which need two inputs but you only provides one input.
That is the problem. if you want two outputs from cats you need to provides
two inputs.

【在 r*******y 的大作中提到】
: what is the way to do at this time?
: for example:
: //test
: cat $1
: cat $1
: then ./test input will display input twice
: but ./test < input only display input once
: If I want to use ./test < input and display input twice,
: when what should I do ?
: Thanks.

avatar
j*r
10
装了解锁后有一个问题。iGo8, Navigon软件控制白天晚上不同屏幕亮度的功能不能用
了。不知道有没有解决方法。
avatar
K5
11
that is not the correct way to do it. In his bash script, $1 is empty. you
can echo it to see if that is the case. and the first cat get the inpurt
from the re-directed stdin.

【在 l******n 的大作中提到】
: 这样可以:
: cat $1 > tmp
: cat tmp
: cat tmp
: rm -f tmp
: 不过这是一种很不robust的用法.

avatar
d*y
12
在我的S401/S501的iGO8.3.4.102680與Navigon7.4.3從來不曾發生過這等狀況.
要請您再詳細些描述.
avatar
l*n
13
$1是empty, 但是这个时候cat会接管"< input", 所以这是个能work的script, 但是
不是一个好的script.

【在 K5 的大作中提到】
: that is not the correct way to do it. In his bash script, $1 is empty. you
: can echo it to see if that is the case. and the first cat get the inpurt
: from the re-directed stdin.

avatar
j*r
14
Hi Docky,
在iGo8的Settings->Device settings里有Backlight Intensity at Daytime和
Backlight Intensity at Night两个选项可以调节白天和晚上屏幕背光的亮度。我用的
iGo8在Mio C320里这两个选项都有,但是拷贝到S501后这两个选项就没有了,不知道是
什么问题。Navigaon调节白天晚上不同背光的选项还在,但是不起作用。
avatar
r*y
15
my question is this:
//input
a A 10
b B 20
I need to write a script called test such that
./test < input > out
such that out is here
A,B
10,20
How can I do this job? Thanks

【在 l******n 的大作中提到】
: $1是empty, 但是这个时候cat会接管"< input", 所以这是个能work的script, 但是
: 不是一个好的script.

avatar
d*y
16
我的S501並沒有這問題.
Navigon的調節當場看不出來,等到它轉到日/夜mode時, 效果纔顯現得出來
倒是iGO8的問題比較奇怪
調節筏失蹤可能跟Skin還有sys.txt有關
請換一個skin
我的sys.txt內容如下:
[rawdisplay]
screen_x=480
screen_y=272
[interface]
skin="ui_igo8_da"
laneinfo_signpost_enabled=1
maxzoom2d=6000000
show_exit=1
[map]
3d_scale_carmodel=1
3dcarsizemin=4000
3dcarsizemax=6000
3dcarsizemul=10000
[power]
backlight_manage_values = 1
backlight_max = 100
backlight_min = 0
backlight_methods = 39
[debug]
tts_min_ready_wav=1
tts_getaway_time=100
sound_q_length=200
skip_eula=
avatar
l*n
17
你这个跟最初问的完全没啥关系呀, 你是要输出的时候第一行是输入的文件所有行的
第二列(逗号分隔)?

【在 r*******y 的大作中提到】
: my question is this:
: //input
: a A 10
: b B 20
: I need to write a script called test such that
: ./test < input > out
: such that out is here
: A,B
: 10,20
: How can I do this job? Thanks

avatar
y*g
18
dingggggggg
You have a golden heart, unlike some one else.
avatar
r*y
19
I write this code
//test
cat $1 | awk '{print $2","}' | xargs
cat $1 | awk '{print $3","}' | xargs
then ./test input > output will give me the result
but ./test < input > output will not

【在 l******n 的大作中提到】
: 你这个跟最初问的完全没啥关系呀, 你是要输出的时候第一行是输入的文件所有行的
: 第二列(逗号分隔)?

avatar
j*r
20
Hi Doocky,
多谢了,在sys.txt里加了[power]后两个选项都出来了,没有什么问题了。
avatar
r*y
21
yes

【在 l******n 的大作中提到】
: 你这个跟最初问的完全没啥关系呀, 你是要输出的时候第一行是输入的文件所有行的
: 第二列(逗号分隔)?

avatar
p*f
22
太好了。多谢多谢。
试了TT,Garmin,不过都没有TTS. 正常吗?
TT 是 840.2563。似乎该有cspeech. Garmin 是2010.30。
另外 s501 的touch screen好像不是很灵敏和精确。有时要用力按。不知是不是个例?
S501锁定速度还是很快的。
avatar
l*n
23
你如果一定要./test input > output和./test < input > output
都work的话, 那就是我之前的那种写法. 不过那不是个好的脚本.
//test
cat $1 > tmp
cat tmp | awk '{print $2","}' | xargs
cat tmp | awk '{print $3","}' | xargs
rm -f tmp

【在 r*******y 的大作中提到】
: I write this code
: //test
: cat $1 | awk '{print $2","}' | xargs
: cat $1 | awk '{print $3","}' | xargs
: then ./test input > output will give me the result
: but ./test < input > output will not

avatar
c*b
24
TT和Garmin都只有在他们自家卖的机器上才能有TTS

【在 p*******f 的大作中提到】
: 太好了。多谢多谢。
: 试了TT,Garmin,不过都没有TTS. 正常吗?
: TT 是 840.2563。似乎该有cspeech. Garmin 是2010.30。
: 另外 s501 的touch screen好像不是很灵敏和精确。有时要用力按。不知是不是个例?
: S501锁定速度还是很快的。

avatar
r*y
25
Also this way will give
A, 10,
B, 20,
but not
A, 10
B, 20
The last item should not be followed by an ","
Any idea to acheive this? thanks

【在 l******n 的大作中提到】
: 你如果一定要./test input > output和./test < input > output
: 都work的话, 那就是我之前的那种写法. 不过那不是个好的脚本.
: //test
: cat $1 > tmp
: cat tmp | awk '{print $2","}' | xargs
: cat tmp | awk '{print $3","}' | xargs
: rm -f tmp

avatar
p*f
26
原来如此. 谢谢.
avatar
l*n
27
可以这样,
//test
cat $1 > tmp
cat tmp | awk '{if (NR==1) {printf "%s",$2} else {printf ", %s",$2}}END{pri
ntf "\n"}'
cat tmp | awk '{if (NR==1) {printf "%s",$3} else {printf ", %s",$3}}END{pri
ntf "\n"}'
rm -f tmp

【在 r*******y 的大作中提到】
: Also this way will give
: A, 10,
: B, 20,
: but not
: A, 10
: B, 20
: The last item should not be followed by an ","
: Any idea to acheive this? thanks

avatar
w*r
28
可以用到Mio C230 or C320 上么?

Flash
paths.xml在根目錄, us.ini在\Menu\Apps, Tomtom.mscr在\TomTom)
gmapprom.img是假的北美圖資, 請另尋並xx)
and_Canada" folder是空的, 請另尋並XX)
Flash ROM中 (因M400只有1.8G的空間, 所以可能得將原來的東西全部移除; 然後將
paths.xml與S501.rar解壓後的內容copy入根目錄. 在copy進來前千萬不可斷USB連線或
停電,請見補充說明4 )
存在Flash ROM中, 否則您的Mio就啟動不了, 且無法再與pc連線. 關鍵在那個
AppStartupSec.exe是連接USB的要件
還在, 所以還可連接USB補救
別注意 -- Program Files與其中的檔案, 在切斷PC連線前必須存在Flash ROM中. 不然
沒救.
nDrive, papago X5, roadeasy5, Nuro U1 在這三個機種皆可跑. 請自行在網上尋找.
Have Fun!
外, 本人不負責.

【在 d***y 的大作中提到】
: 我的S501並沒有這問題.
: Navigon的調節當場看不出來,等到它轉到日/夜mode時, 效果纔顯現得出來
: 倒是iGO8的問題比較奇怪
: 調節筏失蹤可能跟Skin還有sys.txt有關
: 請換一個skin
: 我的sys.txt內容如下:
: [rawdisplay]
: screen_x=480
: screen_y=272
: [interface]

avatar
r*y
29
thanks. but it seems not to creat a new row ?
the output is only one row ?

pri
pri

【在 l******n 的大作中提到】
: 可以这样,
: //test
: cat $1 > tmp
: cat tmp | awk '{if (NR==1) {printf "%s",$2} else {printf ", %s",$2}}END{pri
: ntf "\n"}'
: cat tmp | awk '{if (NR==1) {printf "%s",$3} else {printf ", %s",$3}}END{pri
: ntf "\n"}'
: rm -f tmp

avatar
d*y
30
基本上可以的
但因C230 or C320的啟動檔與Moov系列的啟動檔並不相同
所以必須略做修改
MoonBear當初創作這個解鎖就是針對C320的

【在 w****r 的大作中提到】
: 可以用到Mio C230 or C320 上么?
:
: Flash
: paths.xml在根目錄, us.ini在\Menu\Apps, Tomtom.mscr在\TomTom)
: gmapprom.img是假的北美圖資, 請另尋並xx)
: and_Canada" folder是空的, 請另尋並XX)
: Flash ROM中 (因M400只有1.8G的空間, 所以可能得將原來的東西全部移除; 然後將
: paths.xml與S501.rar解壓後的內容copy入根目錄. 在copy進來前千萬不可斷USB連線或
: 停電,請見補充說明4 )
: 存在Flash ROM中, 否則您的Mio就啟動不了, 且無法再與pc連線. 關鍵在那個

avatar
l*n
31
这不是你的要求么, input文件所有行的第二列构成输出的第一行,
所有行的第三列构成输出的第二行.

【在 r*******y 的大作中提到】
: thanks. but it seems not to creat a new row ?
: the output is only one row ?
:
: pri
: pri

avatar
w*r
32

Flash
paths.xml在根目錄, us.ini在\Menu\Apps, Tomtom.mscr在\TomTom)
gmapprom.img是假的北美圖資, 請另尋並xx)
and_Canada" folder是空的, 請另尋並XX)
no maps found 怎么弄?
下的是USA_and_Canada v840.2571 , xx过了
Flash ROM中 (因M400只有1.8G的空間, 所以可能得將原來的東西全部移除; 然後將
paths.xml與S501.rar解壓後的內容copy入根目錄. 在copy進來前千萬不可斷USB連線或
停電,請見補充說明4 )
存在Flash ROM中, 否則您的Mio就啟動不了, 且無法再與pc連線. 關鍵在那個
AppStartupSec.exe是連接USB的要件
還在, 所以還可連接USB補救
別注意 -- Program Files與其中的檔案, 在切斷PC連線前必須存在Flash ROM中. 不然
沒救.
nDrive, papago X5, roadeasy5, Nuro U1 在這三個機種皆可跑. 請自行在網上尋找.
Ha

【在 d***y 的大作中提到】
: 基本上可以的
: 但因C230 or C320的啟動檔與Moov系列的啟動檔並不相同
: 所以必須略做修改
: MoonBear當初創作這個解鎖就是針對C320的

avatar
r*y
33
I tried this:
//input
a A 10
b B 20
//test
cat $1 > tmp
cat tmp | awk '{if (NR==1) {printf "%s",$2} else {printf ", %s",$2}}END{pri
ntf "\n"}'
cat tmp | awk '{if (NR==1) {printf "%s",$3} else {printf ", %s",$3}}END{pri
ntf "\n"}'
rm -f tmp
then ./test < input just give
A, B10, 20
not
A, B
10, 20

【在 l******n 的大作中提到】
: 这不是你的要求么, input文件所有行的第二列构成输出的第一行,
: 所有行的第三列构成输出的第二行.

avatar
d*y
34
買尬的!您老大把問句藏在一推字中剛纔發現.
"no maps found"的問題出在:
1. Tomtom.mscr中第一行
RegWriteString("HKLM", "System\Explorer\Shell Folders","My Documents","\
Storage Card")
如果是m400 那個"\Storage Card" 要改成"\My Flash Disk"
2. 圖所在的folder (USA_and_Canada) 必須和 TomTom folder 平行放在根目錄

no maps found 怎么弄?
下的是USA_and_Canada v840.2571 , xx过了

【在 w****r 的大作中提到】
:
: Flash
: paths.xml在根目錄, us.ini在\Menu\Apps, Tomtom.mscr在\TomTom)
: gmapprom.img是假的北美圖資, 請另尋並xx)
: and_Canada" folder是空的, 請另尋並XX)
: no maps found 怎么弄?
: 下的是USA_and_Canada v840.2571 , xx过了
: Flash ROM中 (因M400只有1.8G的空間, 所以可能得將原來的東西全部移除; 然後將
: paths.xml與S501.rar解壓後的內容copy入根目錄. 在copy進來前千萬不可斷USB連線或
: 停電,請見補充說明4 )

avatar
l*n
35
呵呵 你这是dos和unix文本格式转换的问题吧. unix下面换行就是"\n", dos 下面是"\
r\n".

pri
pri

【在 r*******y 的大作中提到】
: I tried this:
: //input
: a A 10
: b B 20
: //test
: cat $1 > tmp
: cat tmp | awk '{if (NR==1) {printf "%s",$2} else {printf ", %s",$2}}END{pri
: ntf "\n"}'
: cat tmp | awk '{if (NR==1) {printf "%s",$3} else {printf ", %s",$3}}END{pri
: ntf "\n"}'

avatar
k*g
36
Hi Docky
能给我们做个iGo8 for s501的教程吗?
多谢了
avatar
r*y
37
but I am doing the job on linux

"\

【在 l******n 的大作中提到】
: 呵呵 你这是dos和unix文本格式转换的问题吧. unix下面换行就是"\n", dos 下面是"\
: r\n".
:
: pri
: pri

avatar
d*y
38
從C220時代東抓西下整出來的
已經混亂攪不清了
乾脆出個現成的 (請見1樓)
Content內的poi, map, dem, building因檔太大留空
可另尋找下載 (應該很普遍, 本版就有了)

【在 k*******g 的大作中提到】
: Hi Docky
: 能给我们做个iGo8 for s501的教程吗?
: 多谢了

avatar
r*y
39
I find a way from your code:
cat $1 >tmp
cat tmp | awk '{if (NR==1) {printf "%s",$2} else {printf ", %s",$2}}'
cat tmp | awk '{if (NR==1) {printf "\n%s",$3} else {printf ", %s",$3}}'
rm -f mytmp
but here I have another issue for this input:
a "A" 10
b "B" 20
The output is
"A", "B"
10, 20
I want the output to be
A, B
10, 20
That is, I want to remove the double quote around A and B. How can I do this
in awk?
Thanks a lot
~

"\

【在 l******n 的大作中提到】
: 呵呵 你这是dos和unix文本格式转换的问题吧. unix下面换行就是"\n", dos 下面是"\
: r\n".
:
: pri
: pri

avatar
k*g
40
Hi, Docky
请问你这个igo8 for s501的resolution是多少的?
我想搞个可以显示3D小车的皮肤
avatar
r*y
41
I got it
cat $1 >tmp
cat tmp | awk '{if (NR==1) {printf "%s",$2} else {printf ", %s",$2}}'
cat tmp | awk '{if (NR==1) {gsub("\"", "", $2);printf "\n%s",$3} else {gsub
("\"", "", $2);printf ", %s",$3}}'
rm -f tmp
Thanks a lot

【在 r*******y 的大作中提到】
: I find a way from your code:
: cat $1 >tmp
: cat tmp | awk '{if (NR==1) {printf "%s",$2} else {printf ", %s",$2}}'
: cat tmp | awk '{if (NR==1) {printf "\n%s",$3} else {printf ", %s",$3}}'
: rm -f mytmp
: but here I have another issue for this input:
: a "A" 10
: b "B" 20
: The output is
: "A", "B"

avatar
d*y
42
s501/s401/m400: 480x272

【在 k*******g 的大作中提到】
: Hi, Docky
: 请问你这个igo8 for s501的resolution是多少的?
: 我想搞个可以显示3D小车的皮肤

avatar
i*m
45
狂赞啊~
avatar
k*g
46
Hi,Docky
为何我按照他说的方法破解以后进入协议界面选了I agree就会老弹出一个窗口“Not
enough memory available”
avatar
i*o
47
可以用到Moov 500 上么?
avatar
d*y
48
1. 將micro SD卡的內容全部拷入硬碟中 > format micro SD > 將硬碟中的備份一次拷回
or
2. 換一片好一點的micro SD 卡

【在 k*******g 的大作中提到】
: Hi,Docky
: 为何我按照他说的方法破解以后进入协议界面选了I agree就会老弹出一个窗口“Not
: enough memory available”

avatar
d*y
49
手上只有moov 200
解鎖和iGO8可以 (因是3.5"介面解析度要小改)
但Garmin與TomTom怎麼都做不成
moov500或moov300可以試試看

【在 i*****o 的大作中提到】
: 可以用到Moov 500 上么?
avatar
i*o
50
Thanks.

【在 d***y 的大作中提到】
: 手上只有moov 200
: 解鎖和iGO8可以 (因是3.5"介面解析度要小改)
: 但Garmin與TomTom怎麼都做不成
: moov500或moov300可以試試看

avatar
f*y
51
radioshack 有$20 off的coupon
Mio S501 卖$129-20coupon = 109. 4.7"的screen, 而且可以破解, deal好像不错
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。