由买买提看人间百态

topics

全部话题 - 话题: file1
1 2 3 4 下页 末页 (共4页)
A*********c
发帖数: 77
1
In a UNIX system I have a directory tree like
dir0/folder1/folder2/file1
dir1/folder1/folder2/file1
dir2/folder1/folder2/file1
dir3/folder1/folder2/file1
dir4/folder1/folder2/file1
...
Now I have got a newer version of file1 in dir0/folder1/folder2 and want to
ust it to replace every file1 above. Is there any command and/or program so
that I can finish my task using just one line (in reality I have more than 20
such directories)?
Thanks in advance!
x***n
发帖数: 291
2
来自主题: Java版 - Re: Put classes into different files
no need to import as long as ur files are under the same dir, and
you can just do it. if you want to use import, you need specify the
dir name where your file reside.
suppose you put file1.java in dir /java/file/file1.java
your file1.java should indicate the package name, like :
//file1.java code
package file;
public class file1 .....
and you put use.java in dir /java/use.java
//use.java code
import file.*;
public class use ...
Now you can use file1.java in use.java.
you can compile both files u
m*********g
发帖数: 273
3
来自主题: Linux版 - sed 和 bash script 求助
想实现以下功能:
file1:
NP 4
要改成:
NP 5
在终端下:
$ sed '/^NP/s/[0-9]/5/' file1
可以完成。
现在要写一个bash scirpt 批量做这件事
#!/bin/bash
for((n=1;n<=3;n++))
do
sed '/^NP/s/[0-9]/${n}/' file1 > file1.$n
done
这样不成功, file1.1 是这样的
NP ${n}
怎样才能吧$n实际的值传给script中的sed呢?
我知道用perl可以做的,只是想用一下sed这个简单工具,先谢了
a**********0
发帖数: 422
4
来自主题: JobHunting版 - 发个我总结的unix常用命令
The Unix Commands
其实就是攒了一下网上的资料
# Create a new tar archive.
# the folder dirname/ is compressed into archive_name.tar
tar cvf archive_name.tar dirname/
# Extract from an existing tar archive
tar xvf archive_name.tar
# View an existing tar archive
tar tvf archive_name.tar
# Search for a given string in a file (case in-sensitive search).
grep -i "the" demo_file
# Print the matched line, along with the 3 lines after it.
grep -A 3 -i "example" demo_text
# Search for a given string in all files recur... 阅读全帖
F**e
发帖数: 593
5
来自主题: SanFrancisco版 - java EL 问题请教 (转载)
【 以下文字转载自 Java 讨论区 】
发信人: Fine (蛋定), 信区: Java
标 题: java EL 问题请教
发信站: BBS 未名空间站 (Sun Aug 15 02:54:03 2010, 美东)
有没有办法把variable传给expression?
比如说一个简单的例子:

.. show something about this file1

问题是我有10个这样的variable, file1, file2, ..., file10. 我可以用个forEach
loop


.. show something about this file1


怎样才能把这个loop里的i传给这个file${i} 呢?上面这样不行啊。
F**e
发帖数: 593
6
来自主题: Java版 - java EL 问题请教
有没有办法把variable传给expression?
比如说一个简单的例子:

.. show something about this file1

问题是我有10个这样的variable, file1, file2, ..., file10. 我可以用个forEach
loop


.. show something about this file1


怎样才能把这个loop里的i传给这个file${i} 呢?上面这样不行啊。
p*****a
发帖数: 1152
7
http://linuxcommando.blogspot.com/2008/09/how-to-find-and-delete-all-hard-links.html
Deleting a file is deceptively simple. You can simply use the rm command
like this.
$ rm file1
However, if the file has one or more hard links to it, life gets more
interesting. You need to seek and destroy all hard links to the file.
A hard link is essentially another name for a file. Hard links to file1 can
be created as follows:
$ ln file1 file2
$ ln file1 tmp/file3
file2 and file3 become another name of file
p**h
发帖数: 99
8
来自主题: Unix版 - [转载] compare
【 以下文字转载自 Linux 讨论区 】
【 原文由 penh 所发表 】
假设我有2目录, 里面的相同文件名的内容应该是完全相同的.
比如:
在dir1中, 我有: file1 file2 file3...
在dir2中, 我有: file1 file2 file3...
dir1/file1 应该和 dir2/file1 完全相同.
dir1/file2 应该和 dir2/file2 完全相同.
dir1/file3 应该和 dir2/file3 完全相同.
...
如何进行比较以确认这一点? 当然我可以用diff手动地一个个地比较.
但有没有更cool的办法? thanks.
p******f
发帖数: 162
9

let's say file1 & file2 are in directory ~user0/secret,
and if ~user0, ~user1 & ~user2 are in a single filesystem
you may try this:
user0$ chmod 711 ~ ~/secret
user0$ chmod 644 ~/secret/{file1,file2}
user1$ mkdir ~/secret
user1$ chmod 700 ~/secret
user1$ ln ~user0/secret/{file1,file2} ~/secret
same thing for user2
user0$ chmod 700 ~ (optional)
user0$ chmod 700 ~/secret
user0$ chmod 666 ~/secret/{file1,file2}
n********y
发帖数: 66
10
来自主题: JobHunting版 - [Google算法题] reconstruct sector
file1 = sec1 -> sec7->sec9 -> sec11 -> null
file2 = sec10 -> sec12-> null
file1 should start from sec2 ?
For example
Sec1.block1: 2
block2: 10
block3: null
These data are lost. So we scan from Sec2, then follow pointer to 2,7,9,11
and record these positions. Write all the information as file1 to Sec1. Then
from next sector in 2-17 not used, do same thing.
when you're done, you get a your Sec1 back.
WB
发帖数: 170
11
想要吧...放在很长的路径path截断后的前面or后面,
.net的那个elpsis类好像只能画,不能得到截短后的字符串。
比如
c:/adssdhks/dsadsd/dsdsd/file1
->
c:/ass/.../dsdsd/file1
or
->
.../dsdsd/file1
java也有吗?
y********o
发帖数: 2565
12
来自主题: Java版 - Java的中文读写问题
查了本版历史,有的尽是有关Swing应用程序显示中文的问题,与我这个关系不大。
好长时间已经没有碰过Java了。
我要从一个纯文本文件file1.txt中将某些汉字逐个读出,并逐个写入文件file2.txt中。
写了如下的几行,只尝试读写一个汉字,不成功:
FileInputStream fis = new FileInputStream("file1.txt");
InputStreamReader isr = new java.io.InputStreamReader(fis, "GB2312");

FileOutputStream fos = new FileOutputStream("file2.txt");
OutputStreamWriter osw = new OutputStreamWriter(fos, "GB2312");
我不懂怎样读出汉字。
如果我用isr.read()并将其返回结果System.out.println出来的话,屏幕只会显示一个数
字25105, 这个数字应当是file1.txt的第一个汉字“我”了。怎样让它println出汉
k****s
发帖数: 162
13
试过 cp -r /user/file1/ /user/file2/
结果就会把file1这个目录整个拷贝到file2里面,我不想要file1这个目录名,请指点
,谢谢~
w****i
发帖数: 964
14
来自主题: Programming版 - python gc question
Could someone tell me how to free memory of huge strings in python?
I have two huge strings R0 and R1 in python, why "R0 = R1" doesn't free the
memory of previous R0?
for example, this frees the memory of R0:
>>> R0 = open(file1).readlines()
>>> del R0
But the following doesn't free memory
>>> R0 = open(file1).readlines()
>>> R1 = open(file2).readlines()
>>> R0 = R1 # this doesn't free memory of file1.
>>> del R0
>>> del R1 # this doesn't free the memory either
what is the best way to free
d****n
发帖数: 1637
15
来自主题: Programming版 - 问一个vim的问题
in vim
:badd file1.txt
:badd file2.txt
:vs
:b2
//split windows now, file2.txt in left window and file1.txt in right window
:diffthis
control+W
//type control +W twice , switch to right window now
:diffthis
OR just :
vimdiff file1.txt file2.txt
gg
i***e
发帖数: 3219
16
来自主题: Unix版 - compare which file is newer
well, what i want to do is this:
if ["file1 in local machine" newer than "file2 in remote machine"]; then
scp -p file1 me@remote_machine:file2
else
scp -p me@remote_machine:file2 file1
fi
so, how to implement the test of condition? thanks!
T********r
发帖数: 6210
17
cd the .. directory of dir0,
find . -name file1 -exec /bin/cp dir0/folder1/folder2/file1 {} \;
note, cp won't replace the dir0/folder1/folder2/file1 with the same
file.
q***z
发帖数: 543
18
我写的清楚一点。我是想产生一些表格,每个名字都不一样。但是用xlswrite好像不支
持。如:
file1=str('....','.xls');
xlswrite(file1,xxx);
每次都是同一个文件名 file1.
不知道那位大侠知道该如何解决,谢谢!
q***z
发帖数: 543
19
我写的清楚一点。我是想产生一些表格,每个名字都不一样。但是用xlswrite好像不支
持。如:
file1=str('....','.xls');
xlswrite(file1,xxx);
每次都是同一个文件名 file1.
不知道那位大侠知道该如何解决,谢谢!
q***z
发帖数: 543
20
我写的清楚一点。我是想产生一些表格,每个名字都不一样。但是用xlswrite好像不支
持。如:
file1=str('....','.xls');
xlswrite(file1,xxx);
每次都是同一个文件名 file1.
不知道那位大侠知道该如何解决,谢谢!
a***e
发帖数: 1010
21
来自主题: DataSciences版 - 如何合并两个数据文件 (转载)
用 perl 很简单的
建一个 %flag
建一个 %temp
(1) 先打开file2, 按行读入,用第一列做标记, 赋值为 1 ($flag{$1} =1), 并且把整
行赋值到 $temp{$1} = $line
(2) 再打开file1, 按行读入,先检验第一列的标记是否为 1 ($flag{$1} ==1),
如果不是,把file1的 行写到新文件file3;
如果标记是 1, 把file1的 行写到新文件file3, 把$temp{$1}夜写到这一行里 。
q*****i
发帖数: 100
22
起诉一家美国连锁的修车公司,我去的这一家实在太烂了。但是本人人品和气场也不够
,在法官(small claim)面前没有当场戳穿车行前台小混混的撒谎吹牛伎俩。下面贴上
法庭呈堂描述。相关的证据都是很strong的,最终是无奈小混混将法官的注意力转移到
技术细节,我无法给出有力证据。输了,发此一贴,纪念一下,随便提醒各位为了钱包
,远离这个车行很那帮奸诈之人。
On 10/19/2011, I went to the Midas store (376 Highway #18 North East
Brunswick, NJ 08816) for oil change with a coupon which is $21.99 for pure
oil change. I was waiting there for the oil change works done. However,
around half a hour then, a staff in their store bring me to the workshop,
and show me lots of problems ... 阅读全帖
i*****e
发帖数: 113
23
来自主题: JobHunting版 - 一道面试题,请大家给些意见
1) open file2 with rw
2) set file2 size to length of file1, and lseek to eof
3) read a block (2k or 4k, i.e. one page) from file1
4) reverse the bits on the block
5) find proper place and write back to file2
6) if not done, go to 3)
f**********t
发帖数: 1001
24
来自主题: JobHunting版 - 大文件去重复,有什么好办法么
抛砖,我的2 cent.
基本思路:用hash和MD5。
1. 把大文件file1里的每一行做MD5。重复行的MD5会相同。把所有(line, MD5 value)
写入另一个文件file2。
2. 可能另一个文件file2特别大,不能一次读入内存。这时可以把它分成若干个小的。
比如我们想把它分成8个小的,则根据MD5 value的后三位,分到第0,1,2,。。。7个
文件。这时重复的行一定在相同的小文件中。
3. 这8个文件都可以一次读入内存。对于每个文件:
count重复的行,可用map/hashmap数据结构。(8个文件中,重复的行一定不会跨越
两个文件)。把所有重复的行写入文件file3
4. 根据file1和file3,去掉所有重复的行。把不重复的写入fileDst。
呼唤更好的解法 =)
q****x
发帖数: 7404
25
来自主题: JobHunting版 - 问个文件系统同步的设计问题
文件要上锁。否则你怎么找到目录?
比如dir1->dir2->file1,要把file1挪到dir1下去。
t***q
发帖数: 418
26
【 以下文字转载自 Programming 讨论区 】
发信人: treeq (treeq), 信区: Programming
标 题: 天,如何能让程序转得快点?有包子。
发信站: BBS 未名空间站 (Fri Feb 27 23:26:22 2015, 美东)
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, ... 阅读全帖
q******n
发帖数: 66
27
来自主题: SanFrancisco版 - 工程师们看过来
Is this what you are trying to do?
-bash-3.2$ cat file1
1_1 1_2 1_3 1_4
-bash-3.2$ cat file2
2_1 2_2 2_3 2_4
-bash-3.2$ cut -f3,4 file2 > file3
-bash-3.2$ paste file1 file3 > file4
-bash-3.2$ cat file4
1_1 1_2 1_3 1_4 2_3 2_4
t***q
发帖数: 418
28
【 以下文字转载自 Programming 讨论区 】
发信人: treeq (treeq), 信区: Programming
标 题: 天,如何能让程序转得快点?有包子。
发信站: BBS 未名空间站 (Fri Feb 27 23:26:22 2015, 美东)
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, ... 阅读全帖
j****c
发帖数: 19908
29
我原有 file1.txt 和 file2.txt,我刚才误操作
cp file1.txt file2.txt
结果把原先的file2.txt覆盖掉了,能恢复吗?
f******3
发帖数: 534
30
来自主题: PhotoGear版 - 求教个linux问题
looks like might be something wrong with your file system, how about run a
fsck ?
or you can try cat a dev/null to a single file you want to remove, for
example:
cat /dev/null > /tmp/file1 ( this will remove /tmp/file1)
l**n
发帖数: 7272
31
来自主题: Apple版 - Unix的缺陷(ZT)
虽然这里的码工比较少,但是能appreciate coding和programming的朋友也可以看看。
我觉得挺有意思的。
http://blog.sina.com.cn/s/blog_5d90e82f01014k5j.html
我想通过这篇文章解释一下我对 Unix 哲学本质的理解。我虽然指出 Unix 的一个设计
问题,但目的并不是打击人们对 Unix 的兴趣。虽然 Unix 在基础概念上有一个挺严重
的问题,但是经过多年的发展之后,这个问题恐怕已经被各种别的因素所弥补(比如大
量的人力)。但是如果开始正视这个问题,我们也许就可以缓慢的改善系统的结构,从
而使得它用起来更加高效,方便和安全,那又未尝不可。同时也希望这里对 Unix 命令
本质的阐述能帮助人迅速的掌握 Unix,灵活的应用它的潜力,避免它的缺点。
通常所说的“Unix哲学”包括以下三条原则[Mcllroy]:
一个程序只做一件事情,并且把它做好。
程序之间能够协同工作。
程序处理文本流,因为它是一个通用的接口。
这三条原则当中,前两条其实早于 Unix 就已经存在,它们描述的其实是程序设计最... 阅读全帖
s***f
发帖数: 173
32
来自主题: BuildingWeb版 - Source code: Re: A very easy Question
Sample: 包括5个ASP 文件.2个功能:直接将文件UPLOAD到你的目录下和UPLOAD到DATABASE
"Test.asp"

File Upload


To Database






To File System




j***n
发帖数: 301
33
来自主题: BuildingWeb版 - about http compression
Hi all,
I'm trying to take advantage of http compression / decompression feature men
tioned in RFC2616.
I have created two gziped files using unix gzip command: file1 and file2.
I deployed them to tomcat and wrote a simple program to set the appropriate
http header. In FF or IE the file can be browsed as regular page without run
time compression overhead at serverside.
When I concatenated file1 and file2 into one file, I was still able to decom
press them using Unix gzip command. What I got is a
h***a
发帖数: 358
34
来自主题: Database版 - access 的tree view 问题
我在access2000 中建立了一个tree view
+....folder1
-.....folder2
......file1
......file2
....folder3
+表示有东西,可以expand, -表示已经expand 了, 没有child 的话,
就没有任何加+,-好。
我现在要求得到这样的结果。
+, - 继续要所表达的意思。 但是在根目录下, 可以区分是不同的level的node.
列如, 根目录下可以有file, 有folder, 但是我不知道怎么用符号或者 image把他们给
区分开
+....folder1
-.....folder2
......file1
......file2
....folder3
....file3
就象建立folder 和file 一样。 一看就知道是文件夹还是文件, 是空文件夹,还是有东
西
请问有人知道access 里面怎么做吗? 用access 的VBA也行. 多谢
p*****s
发帖数: 344
35
来自主题: Linux版 - [请教]文件输入 (转载)
just some thoughts, never tried myself
1. you call "exe with -i file1 -j file2 ..." first. Assume the return
process id is , ls /proc//fd/
you should file some fd nums ( 2. by default /proc//1, 2, 3 are your pipe fd
3. use gdb attach to the process
4. use dup2(,) to swap fd so that your exe can read
from pipe
o**n
发帖数: 1249
36
来自主题: Linux版 - 问个关于user/group的粗浅问题
对于linux的文件权限管理,是一个文件只能属于一个group么,如果我要做这样一个类
似的事情怎么办?
user group
file1 rwxrwx--- user1 group1
file2 rwxrwx--- user2 group2
我想让另外一个user3可以访问file1和file2,就做不到是么?除非把group1和group2
换成用一个group?我是想如果一个文件可以属于多个group,就灵活多了。否则对于
user和group多而且文件权限结构复杂的服务器,岂不是很麻烦?我没有这方面的经验
,欢迎指教。
a*******e
发帖数: 3021
37
一个目录下全是.NEF文件,
我要用一个命令转换成jpg,
exiftool -b -JpgFromRaw file1.NEF > file1.jpg
exiftool -b -JpgFromRaw file2.NEF > file2.jpg
咋写个命令行一下就行了?谢谢 :)
z***l
发帖数: 256
38
来自主题: Linux版 - 比较二进制文件
请教大家一个问题 我现在有两个二进制文件 是由同一个程序在两台不同的机器上产
生的 这两台机器都是UNIX 但configuration不一样 用diff file1 file2, 结果是
file1 and file2 are different 请问有没有办法知道这两个二进制文件是哪些的
bytes不同呢?
F****3
发帖数: 1504
39
来自主题: Linux版 - 怎样保证隐私?
请问怎么看真实进程?我在用gzip来zip我的一个目录架的时候,其他用户能够看到
gzip正在处理那个文件吗?比如
gzip abc_folder
里面有
file1
file2
file3
别人能看到file1,file2, file3的文件名吗?
谢谢!
O******e
发帖数: 734
40
来自主题: Programming版 - How to concatenate two .tar.gz files
Maybe this is more like what you want:
$ tar tf p1.tar
file1
file2
$ tar tf p2.tar
file3
file4
$ tar Af p.tar p1.tar
$ tar Af p.tar p2.tar
$ tar tf p.tar
file1
file2
file3
file4
It seems that the "tar Af" command needs to be issued once
for each of p1 and p2. I didn't play around with the gzip
part; you can try it on your own.
d*o
发帖数: 108
41
来自主题: Programming版 - 大牛 in Perl and SED?
我知道
$yyy = anything;
$replace = “sed `s/XXX/$yyy/g` file1 > file2;
但在下面的 “.” 甚摸意思呢? (结果是一样的. Code written by someone else)
$yyy = anything;
$replace = “sed `”.”s/XXX/”.$yyy.”/g` file1 > file2;
c**t
发帖数: 2744
42
来自主题: Programming版 - 大牛 in Perl and SED?
+

我知道
$yyy = anything;
$replace = “sed `s/XXX/$yyy/g` file1 > file2;
但在下面的 “.” 甚摸意思呢? (结果是一样的. Code written by someone else)
$yyy = anything;
$replace = “sed `”.”s/XXX/”.$yyy.”/g` file1 > file2;
r********g
发帖数: 868
43
来自主题: Programming版 - matlab 批处理文件执行顺序问题
比如说,有100个文件
file1.ext, file2.ext, ......, file100.ext
想要按顺序处理这100个文件,代码如下
Files = dir('file*.ext');
for k = 1:numel(Files)
...
end
dir在读取文件信息的时候已经按ascii的顺序给排好了,结果处理的顺序是file1.ext,
file10.ext, ...
如何才能不太复杂的做到按数字顺序处理文件?
谢谢
S*********g
发帖数: 5298
44
来自主题: Programming版 - how to assign new value to loop variables?
Not possible in matlab.
you can't have a variable that is 3D while a(1,:,:) has difference size than
a(2,:,:).
However, you can attack this using structure.
a.file1 = (all data in file1 as a 2D array);
a.file2 = (all dall in file2 as a 2D array);
If your data are just a rows of number, why not use matlab's function to
load the whole file into one 2D array ocne for all?
If you can't use matlab's function, only you can tell how to determine you
hit the end of the file. No one else can answer your
t***q
发帖数: 418
45
天,如何能让程序转得快点?
原帖在这里:
http://www.mitbbs.com/article_t0/Programming/31381809.html
主要是要做 title matching.
有两个 file, file A 162283 行 X 12 列。 File B 3695 行 X 6 列。用 A 的 第五
列和 B的第四列进行比较, 对 B 的第四列的每一行, 从 A的 那 162283 行中 找出
与之最相似的那一行。A 的第五列和 B 的第四列都是些影视作品的 title, 是一些长
短不一的 string. 我用的是 Levenshtein algorithm 算每一对string 的相似度,再
把相似度排序,从高到低,找出相似度最大的那一个 string, 也就是影视作品的
title, 加到 file B 对应的那一个title 那一行。再加入一个从file A 出来的对应的
一个id, 到 file B 里。算相似度前,我先对每个title 组成的string做预处理,去掉
“:”,”-“,”season”,”episode “ , 等一些词。... 阅读全帖
t***q
发帖数: 418
46
把 c++ 程序改成这样,快了许多,虽说程序不work,但至少说明,应该在算distance
之前就把 string processing 都做了:
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
size_t uiLevenshteinDistance(const std::string &s1, const std::string &s2)
{
const size_t m(s1.size());
const size_t n(s2.size())... 阅读全帖
s*******k
发帖数: 71
47
来自主题: Software版 - Re: 刚发现WC还可以断点续传...

AutoComplete for a command line processor works like the following: suppose
you have two files file1.c and happy.h under the current directory. You
want to edit file1.c, then you type in "vim" :-)), space, "f", and then
press TAB, the commandline processor should fill in "ile1.c" for you, since
it only finds one file under the current directory starting with "f".
Another usage: if you have three programs in your path: cmd1, happy2, t3,
and you want to run happy2, then you type in "h" and press
i****d
发帖数: 7
48
来自主题: Unix版 - [转载] sed question
【 以下文字转载自 Linux 讨论区 】
【 原文由 Iamold 所发表 】
file1.txt contains
asdfasdf
adsf
asdfasdfsdf
#ifdef CONFIG_SCSI_MULTI_LUN
static int max_scsi_luns = 32;
#else
static int max_scsi_luns = 1;
#endif
I want to replace lines from CONFIG_SCSI_MULTI_LUN to #endif
how to do this by using sed?
the following command yielded a wrong output...
sed '/CONFIG_SCSI_MULTI_LUN/,/endif/{c\
#ifdef CONFIG_SCSI_MULTI_LUN\
static int max_scsi_luns = 32;\
#else\
static int max_scsi_luns = 1;\
#endif
;}' file1.txt > output.txt
r**********p
发帖数: 2
49
My question is:
for file1 in ./tmp/*
do
{将字符串 file1 中的所有字符a替换成xyz得到字符串 file2}
cp myfile $file2
done
请问{}中的功能如何用unix命令实现(用C很简单,但我想知道用
unix如何做?
c********x
发帖数: 93
50
来自主题: Unix版 - 请教一个问题
把几个spim下运行命令放到一个文件"file1"里,
(spim是一个程序)
然后运行:
spim < file1
然后执行这个文件
虽然可以正常运行所有命令,
为什么看不到输出的信息?
1 2 3 4 下页 末页 (共4页)