由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 如何实现下列功能?
相关主题
questionunix下编译fortran 的错误太多,看不到怎么办?
login shell and normal shell?如何改变CLASSPATH?
UNIX dummy Questions?请推荐一本Unix的最全面的书籍阿
hotkey in unix[转载] About the history
Doskey function in UNIX?如何单步执行shell?
问个问题which shell is best?
我的alia放在script里为什么不工作?shell programming问题:如何同时run多个作业
一个unix .cshrc的wentiChange shell to tcsh?
相关话题的讨论汇总
话题: shell话题: ls话题: 操作话题: unix话题: 如何
进入Unix版参与讨论
1 (共1页)
t*******l
发帖数: 421
1
如果有个目录,
# ls mit/bbs/unix
shell admin program
...
# ls shell
a.txt b.pc c.out
如果我想在看到shell里的文件后,想通过键盘输入shell里的确文件名,
而进行下一步操作,如何实现?
比如,想对a.txt进行操作,如何能让屏幕提示:enter the file name,
输入a.txt后,进行以后的操作,比如显示内容.
谢谢!
i*******n
发帖数: 166
2

sth like
#!/bin/tcsh
ls
echo "enter the file name"
vi $<

【在 t*******l 的大作中提到】
: 如果有个目录,
: # ls mit/bbs/unix
: shell admin program
: ...
: # ls shell
: a.txt b.pc c.out
: 如果我想在看到shell里的文件后,想通过键盘输入shell里的确文件名,
: 而进行下一步操作,如何实现?
: 比如,想对a.txt进行操作,如何能让屏幕提示:enter the file name,
: 输入a.txt后,进行以后的操作,比如显示内容.

t*******l
发帖数: 421
3
ls 之后应该能让我看到shell里的内容,下一步是选择输入要编辑的文件.

【在 i*******n 的大作中提到】
:
: sth like
: #!/bin/tcsh
: ls
: echo "enter the file name"
: vi $<

i*******n
发帖数: 166
4
#!/bin/tcsh
ls mit/bbs/unix/shell
echo "enter the file name"
vi mit/bbs/unix/shell/$<

【在 t*******l 的大作中提到】
: ls 之后应该能让我看到shell里的内容,下一步是选择输入要编辑的文件.
1 (共1页)
进入Unix版参与讨论
相关主题
Change shell to tcsh?Doskey function in UNIX?
how to redirect error output under unix问个问题
what are the differnces between unix shell?我的alia放在script里为什么不工作?
Re: [转载] how to get the return value of a command by shell?一个unix .cshrc的wenti
questionunix下编译fortran 的错误太多,看不到怎么办?
login shell and normal shell?如何改变CLASSPATH?
UNIX dummy Questions?请推荐一本Unix的最全面的书籍阿
hotkey in unix[转载] About the history
相关话题的讨论汇总
话题: shell话题: ls话题: 操作话题: unix话题: 如何