I am testing function of "set proxy", but I have a problem as follow. Do anyone have an solution for it? Thanks for your response ahead. jimchen@chen: isql -Usa -w999 Password: 1>; select db_name() 2>; go ------------------------------ master (1 row affected) 1>; select suid, status, name from syslogins where name="annlogin" 2>; go suid status name ------ ------ --------------------------...
by jimhongchen - Sybase - 2003-03-22 15:57:37 阅读(1606) 回复(0)
.set sets (and clears) various flags that affect generated code. The following table may not be a complete list. Flag noreorder Turns off reordering of instructions. When on, t.i. when the assembler is reordering, it will put the last instruction before j or jr after the jump so it'll be in the branch delay slot. When off, you'll have to do it yourself. mips3 Tells the assembler t...
I tried many times, but can't find the place to set admin console's time-out, Please help ? Thanks in advance.
These days reads some documents from CU and Linuxfans. And then I try to modify the file of my computer.But now as you see I lost my Chinese input. I use fcitx,if I type the command fcitx in terminal it says: [code] fcitx 无法加载字体 -*-fixed-medium-r-normal--16-*-*-*-*-*-*-*,-*-*-medium-r-normal--16-*-*-*-*-*-zh_CN.GBK-* 字体区域 zh_CN.GBK 不支持! 使用 zh_CN.GB2312 fcitx:Abnormal exit Signal ...
These days reads some documents from CU and Linuxfans. And then I try to modify the file of my computer.But now as you see I lost my Chinese input. I use fcitx,if I type the command fcitx in terminal it says: [code] fcitx 无法加载字体 -*-fixed-medium-r-normal--16-*-*-*-*-*-*-*,-*-*-medium-r-normal--16-*-*-*-*-*-zh_CN.GBK-* 字体区域 zh_CN.GBK 不支持! 使用 zh_CN.GB2312 fcitx:Abnormal exit Signal ...
#!/bin/sh echo the date is $(date) set $(date) echo the month is $2 exit 0 ---------------------------------------------------------- 问题: 1 $()是什么符号,如何用,试举例; 2 set命令也不是很清楚,希望能举简单的例子说明。 谢谢啦~
我知道set -A num 1 2 3可以作为循环使用 某个ini文件内容: set -A num 1 2 3 脚本aaa内容: . ini sh bbb 脚本bbb内容: for i in ${num[@]} do echo $i done 运行aaa后发觉没有效果,是num这个变量只传到了aaa,并没有类似于export一样传到了bbb,不知道set -A加上什么参数可以把参数传到下一个shell里