w*s 发帖数: 7227 | 1 my @cmd = `some cmds generate multiple lines of output`;
if($_ =~ /pattern/)
{
@var = split(/ /, $_);
foreach (@var)
{
print $_."\n"; # print all var in this line
}
}
my question is, if you look at the last $_,
can it work ? |
|
c*****t 发帖数: 1879 | 2 Ubuntu 的版本是有点老,不过网上已经有人弄到16.04。基本上就是改下 repository
然后 apt-get update 。
我挺喜欢 cmd 的。特别是自动给所有的 console app 提供类似 rlwrap 的功能。
copy / paste 一点问题都没有。quick-edit mode 非常方便。
Windows cmd 有一点做的比较好的是,copy / paste 多行文字的时候,不会像 Unix/
Linux
一样先把 paste 的东西一次显现,然后才是要执行文件的 input prompt 。在
Windows 下,
这些都显示的跟 interactive input 差不多。
所以我工作的用的 console 软件,我特地用 Windows 的,就是用起来比 Linux 下更
舒服。
is |
|
g****y 发帖数: 436 | 3 【 以下文字转载自 Linux 讨论区 】
发信人: ggplay (dfdsf), 信区: Linux
标 题: 怪事
发信站: BBS 未名空间站 (Sat Dec 5 22:57:29 2009, 美东)
一个sed命令:
sed '1d' file
commandline 运行没有问题,然后写了一个脚本
# !/bin/bash
CMD="sed '1d' file"
$CMD
然后运行 ./script
提示
sed: -e expression #1, char1: unknown command: '''
请问这是怎么回事? |
|
s******n 发帖数: 876 | 4 how is that a limitation? let me change the syntax a little bit to fit the
unix cmd line convention:
>java com.example.Foo.bar abc 42
Let's put in some realistic names instead of foobars
> java net.sf.Subversion.update -r 1.5
class Subversion
public static update(String... args)
Are multiple entries useful? Usually not for end users; but we never ask end
users to invoke java like that, a shell wrapper is provided.
For people who do use java cmd line this way, they are all developers |
|
T*******x 发帖数: 8565 | 5 哦。这样啊。这个在linux下面分的还是挺清楚的。
在windows下面那个cmd.exe分的不是很清楚,所以我搞糊涂了。
这个cmd.exe到底算terminal还是算shell啊? |
|
R*******c 发帖数: 249 | 6 想在R里面call MATLAB,
用以下命令
system(' "C:/Program Files/MATLAB/R2009a/bin/matlab.exe" CMD BATCH "E:/
Dropbox/time warping/Codes/Matlab/test.m" "E:/Dropbox/time warping/Codes/
Matlab/test.txt" ')
可以自动打开matlab,但是不会运行我想要的test.m文件,是哪里出错呢?
我试着在matlab里面call R,一切都OK:
system(' "C:/Program Files/R/R-2.9.2/bin/R.exe" CMD BATCH "C:\Users\
Documents\test.R" "C:\Users\Documents\test.txt" ')
多谢~ |
|
z****e 发帖数: 54598 | 7 我记得古德霸在这里帮其它人解决过一次类似问题
也是jre和jdk冲突的问题
jre安装之后,默认的java.exe启动是jre那个
所以要修改path,把jdk的bin目录放到path前面去
比jre那个java.exe所在目录更前
//jre那个java.exe好像是在windows32里面
如果怕麻烦的话,直接无脑把jdk的bin目录的path放到最前加一个;就好了
想知道有几个java.exe
windows下cmd屏幕用
which java
就可以看到,一般会有两个,如果安装了jdk的话
修改path后重启cmd,就可以搞定
vert.x安装的话,也需要修改path,把bin的路径放到path里面去
不过这个不会冲突,所以修改好了就可以用vertx命令鸟 |
|
f***y 发帖数: 247 | 8 oepn terminal: cmd+R, type "cmd", enter
navigate to where you store the server.js (http_hello.js?)
then node server.js
The node installation should have added its path to your env. If not, you
can use the absolute path to node.exe |
|
l******9 发帖数: 579 | 9 【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: IIS7.5 大于 64KB 文件不能下载 ?
发信站: BBS 未名空间站 (Tue Jun 23 12:47:53 2015, 美东)
大于 64KB 文件不能下载 (from C# code). 大于 文件不能完全下载, 只能下载 64KB
, 然后
truncated. Why ?
I have published a web service application (C# built in VS2010) to a desktop
with IIS 7.5 win7.
The web service has been hosted successfully on win 7.
Now I can install the application on my laptop (win 7) by accessing the URL
http://myDesktopName.domain.com/MyApp/MyAppSetup.msi
... 阅读全帖 |
|
z*******3 发帖数: 13709 | 10 熟悉一下cmd键,很多热键都是cmd的组合
跟win最大区别就在于多了一个这个按键
其他没啥了,反正都是gui,你再不会,鼠标总会用吧?
mac有delete键 |
|
f*******o 发帖数: 88 | 11 也许对很多大牛来说是一个比较老的问题,不过对我来说是一个新问题。
起因是想从一个video文件在任意时间点读取图像出来。 最开始是用opencv实现的,在
一些文件上测试也没有问题。后来换了一批h264格式的video文件就有问题了,很多文
件读取不出来。 在网上查了一下后,换成用moviepy来读取。 但是现在有新的问题是
就是moviepy在读取有些video文件在初始化阶段就死锁了。 跟踪进去,发现问题主要
出现在:
s = self.proc.stdout.read(nbytes) 语句时。
这个之前还有一堆初始化的代码, 主要是调用ffmpeg来执行并声称一个pipe.
def initialize(self, starttime=0):
"""Opens the file, creates the pipe. """
self.close() # if any
if starttime != 0 :
offset = min(1, starttime)
i_arg = ['... 阅读全帖 |
|
l****n 发帖数: 22 | 12 I find these information from the LAN, what this mean? are they trying to
attack my computer??
137.205.152.26 - - [23/May/2002:13:44:51 +0100] "GET /scripts/root.exe?/c+dir
HTTP/1.0" 404 288
137.205.152.26 - - [23/May/2002:13:44:52 +0100] "GET /MSADC/root.exe?/c+dir
HTTP/1.0" 404 286
137.205.152.26 - - [23/May/2002:13:44:52 +0100] "GET
/c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 296
137.205.152.26 - - [23/May/2002:13:44:52 +0100] "GET
/d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 296
137.205 |
|
|
c*****t 发帖数: 1879 | 14 XNeat (free)
http://www.xneat.com/windows_manager/
可以让 XP/Vista 上的 Window 变成半透明。不过有些不行。比如 cmd.exe
和 Google talk。其实俺最想 cmd.exe 变成半透明的,不过试了好几个
软件,都不行。不过 PuTTY 可以。10% 就不错。
比较酷的是播放半透明的 video :) 比较适合一边看 PPLive 一边 surf 。 |
|
c*****t 发帖数: 1879 | 15 你 right click cmd.exe 的 shortcut,就会看到 "Run as Administrator"。在
这个 cmd.exe 里执行该文件,就不会问你那么多问题了。不过一般最好不要这么
做。因为所有的文件等东西都会自动带 admin 权限。 |
|
l******d 发帖数: 1633 | 16 杀explorer之前先开一个cmd窗口,杀掉explorer后在cmd里删掉dll
然后run explorer就行了 |
|
i**a 发帖数: 13 | 17 如果定义了\newcommand{cmd}[args]{def}
那么在使用这个cmd的时候, 后面def里的newline全都被忽略掉了, 怎么才能force a
newline呢?
谢谢 |
|
T*k 发帖数: 398 | 18 在精华区看了一篇文章,ftp用文本文件作输入
ftp -n < cmd.txt
cmd.txt is like following:
open xxx.xxx.xxx.xxx
user xxx xxxx
put xxxx
quit
我想问一下,telnet是否可以用文本文件输入?
谢谢 |
|
d***r 发帖数: 20 | 19 【 以下文字转载自 Software 讨论区 】
【 原文由 duner 所发表 】
I can use pathtool by typing cmd:pathtool.But,when I want to
edit some *.m file, I typed cmd: edit or edit xx.m, system told
me no such command there. |
|
s******e 发帖数: 273 | 20 【 以下文字转载自 Programming 讨论区 】
【 原文由 seashore 所发表 】
hi, I have some question on the function "system()"
in C, which provide a interfact to execute a
shell command. suppose my calling program "master.c"
is written as
void main() {
;
;
for(i=0; i < 100; i++) res=system("cmd");
;
;
}
and the callee "cmd.c" is written as
int main() {
int r = random();
int *a = calloc(r, sizeof(int));
return(r);
}
I have two problem |
|
|
f****y 发帖数: 70 | 22 有谁解释一下:
use Net::Telnet::Cisco;
my $session1 = Net::Telnet::Cisco->new(Host => '111.157.143.5');
$session1->login('', 'ciscophee');
@shver1 = $session1->enable('pheecisco');
@shver1 = $session1->cmd('clear crypto isakmp');
@shver1 = $session1->cmd('clear crypto sa');
$session1->close;
foreach $line (@shver1){
print "$line";
}
是重起cisco router?
除了perl,还有其他方法可以实现吗?(远程操作cisco router) |
|
c**t 发帖数: 2744 | 23 With Service Pack 2, Microsoft introduces a new security feature which
warns users before executing files that originate from an untrusted
location (zone) such as the Internet.
There are two flaws in the implementation of this feature: a cmd issue
and the caching of ZoneIDs in Windows Explorer. The Windows command shell
cmd ignores zone information and starts executables without warnings.
Virus authors could use this to spread viruses despite the new security
features of SP2.
Windows Explorer do |
|
c********e 发帖数: 383 | 24 【 以下文字转载自 Programming 讨论区 】
【 原文由 crystalike 所发表 】
i want to run a simple script
in shell it would be.
=========================
CC_S=0
CC_E=100
CMD=echo
while [ "$CC_S" -lt "$CC_E" ]
do
$CMD -s HAHA_$CC_S
CC_S=`expr $CC_S + 1`
done
===============================
how to do this in dos/winNT batch?
there is no perl, no cygwin... |
|
y**b 发帖数: 10166 | 25 原来5270还有点意思,这5380完全就是狗屎。
1。安装时划分一块250GB的新盘,划了20GB之后竟然提示要重启,非重启不可。
2。安装完重启竟然无法在dell2405上显示,重启才能显示。
3。超慢,常常响应迟滞。我的机器athlon64 3800/2GB/9800pro/sata.
4。explorer无法打开,好不容易打开竟然死菜。这玩意不行windows还玩个屁。
5。配置菜单狗屎一堆,找个东西巨难。想打开几个msc配置吧,cmd又给藏起来了,
还好在search里面敲了个CMD就自己运行了。
6。原来xp的驱动特别难安装,两块板载网卡一块也搞不定,有块好像定了但过了
一会又断了。
7。想起这次猛吹的sidebar和gadgets,search了一下,屁也没有;只好在control
panel里面找啊找,找到了,根本启动不了;非得重启才能出现。
8。那个flip 3d,第一趟玩的好好的,重启一趟就没法玩了,根本出不来。
....
没法往下试了,立即删了。感觉就是个滥货,没法玩。唯一的改进就是界面好像
比上次整齐一些, 一团光鲜的狗屎。
不到发正式版绝不再试 |
|
p******o 发帖数: 216 | 26 用WinPE装XP的时候,需要先把I386拷贝到D盘上,然后命令行运行bootsect.exe(这个
程序要从Windows AIK装好的目录下,Tools/PETools/x86下拷贝出来,cmd里输入:
bootsect.exe /nt52 C:
拔掉u盘,然后再到D盘运行winnt32.exe安装xp,安装文件copy完后,winnt32就会自动
关掉,回到winpe的cmd窗口,敲exit重启机器就ok了。 |
|
J*******3 发帖数: 1651 | 27 Win8.1 Update下的WIMBoot安装教程+原理解析
在Win8系统出现的时候就有不少同学抱怨,系统盘需要的空间太大了!再安装个更新、
Metro应用之类的,50G以上的占用是轻轻松松了。这导致后期硬盘空间较小的Surface
之类Win8平板上市后的观望氛围浓郁!不过近期微软发布了WIMBOOT镜像启动方式,可
以轻松解决以上问题,经过尝试,通过这种安装方法安装后的系统还不到4G硬盘空间占
用!
WIMBoot是什么?
WIMBoot全称Windows Image Boot镜像启动,与传统的Windows安装要将镜像(WIM)
文件中的所有Windows文件解压释放不一样,WIMBoot不会WIM安装文件进行解压缩,在
安装完成之后,你的C盘直接包含了Windows、应用程序和所有数据.
它是如何工作的?
它是将WIM文件拷贝到一个单独的镜像分区(就像恢复镜像一样),然后使用DISM创
建从C盘到WIM文件的指针文件,这些指针文件是看不到的,但它们会告诉Windows如何
启动操作系统.
这就意味着安装文件大小本身就代表着磁盘的占用量,甚至这个的WIM文件还... 阅读全帖 |
|
l******9 发帖数: 579 | 28 【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: IIS7.5 大于 64KB 文件不能下载 ?
发信站: BBS 未名空间站 (Tue Jun 23 12:47:53 2015, 美东)
大于 64KB 文件不能下载 (from C# code). 大于 文件不能完全下载, 只能下载 64KB
, 然后
truncated. Why ?
I have published a web service application (C# built in VS2010) to a desktop
with IIS 7.5 win7.
The web service has been hosted successfully on win 7.
Now I can install the application on my laptop (win 7) by accessing the URL
http://myDesktopName.domain.com/MyApp/MyAppSetup.msi
... 阅读全帖 |
|
l*****e 发帖数: 3343 | 29 微软真糙蛋,我今天下班鼓动了三个小时才搞明白,为什么我的win7不能升级到win10,
以下是通过google搜到的好用的几个方法,去解决三个不同的错误信息!!!!!希望
对大家有用!一定要升级到win10,为了安全起见。。。
Error1: Failed to install, because windows can’t fail some critical updates
- goto Step9
Error2: Windows 10 upgrade couldn’t update the system reserved partition -
goto Step1
Error3: Shown in windows update, error code-”WindowsUpdate_80240020” -goto
Step7
1. press win+r and type diskmgmt.msc
2. System partition (no drive letters) listed at 100MB, right click on it
and go to change dr... 阅读全帖 |
|
y********o 发帖数: 2565 | 30 My syntax professor's handout says that INFL does not c-command or m-command
its specifier. I don't quite understand this.
Could you please explain, mang hiong? |
|
d*****u 发帖数: 17243 | 31 head肯定不c-command它的specifier,因为它的上一级映射是X-bar,不dominate spec
但是至于m-command,我觉得是一定的啊
m-command的定义不就是maximal projection dominates 什么东西吗?
而且如果没有m-command,怎么解释NOM Case assignment? |
|
y********o 发帖数: 2565 | 32
哦,是的是的。我眼睛看着INFL,脑子想的却是INFL-bar。x-bar c-command its
specifier, right? they are sisters.
烦得你解释一下maximal projection.
m-command |
|
d*****u 发帖数: 17243 | 33 maximal projection就是最高映射,说白了就是它head的那个XP
spec |
|
y********o 发帖数: 2565 | 34 是不是要到最高峰才是maximal projection. 顾名思义嘛。 |
|
d*****u 发帖数: 17243 | 35 XP就是最高了,有时候会出现XP套XP的情况(有adjunct)
head肯定不c-command它的specifier,因为它的上一级映射是X-bar,不dominate |
|