由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 一个初级的shell scripting问题
相关主题
Help!replace a string in all files under a directory?
什么东东能将目录及其子目录下的.tar文件展开!unix commands question
有没有cp或ftp所有文件和子目录里的文件的命令?Who knows this shell varialbe?
如何只列出文件ask a stupid question about DOS
a question in shell scriptwhat is the command option for this?
文件删不掉how to search a pattern in all files
please help, CGI..Re: 如何限制用户锁屏?
为什么我就是不会写Shell script?为什么root都无权改文件?
相关话题的讨论汇总
话题: space话题: 744话题: chmod话题: scripting
进入Unix版参与讨论
1 (共1页)
y*****g
发帖数: 13
1
我想对一个目录结构下的所有文件(不包括子目录本身)递归的执行
"chmod 744 *"
该如何写呢?
先谢过!
t******q
发帖数: 117
2
foreach file `find . -type f -print`
chmod 744 $file
end
somthing like this, not test

【在 y*****g 的大作中提到】
: 我想对一个目录结构下的所有文件(不包括子目录本身)递归的执行
: "chmod 744 *"
: 该如何写呢?
: 先谢过!

i***e
发帖数: 3219
3
I think a single command line will do the job:
find your-directory-name -type f -exec chmod 744 {} \;

【在 y*****g 的大作中提到】
: 我想对一个目录结构下的所有文件(不包括子目录本身)递归的执行
: "chmod 744 *"
: 该如何写呢?
: 先谢过!

t******q
发帖数: 117
4

^
a space is needed as I think.

【在 i***e 的大作中提到】
: I think a single command line will do the job:
: find your-directory-name -type f -exec chmod 744 {} \;

i***e
发帖数: 3219
5

actually you can't put a space there. that command returns an error
if there's a space there.

【在 t******q 的大作中提到】
:
: ^
: a space is needed as I think.

k**y
发帖数: 320
6
chmod -R

【在 y*****g 的大作中提到】
: 我想对一个目录结构下的所有文件(不包括子目录本身)递归的执行
: "chmod 744 *"
: 该如何写呢?
: 先谢过!

c*****t
发帖数: 1879
7
744 would forbid entering of the directory by others.

【在 k**y 的大作中提到】
: chmod -R
i***e
发帖数: 3219
8
this will change the mode of subdirectories themselves as well,
making others unable to enter those subdirectories.

【在 k**y 的大作中提到】
: chmod -R
1 (共1页)
进入Unix版参与讨论
相关主题
为什么root都无权改文件?a question in shell script
[转载] Re: about incoming email文件删不掉
CXTERM 终结说明please help, CGI..
Re: 没有chmod怎么改权限?为什么我就是不会写Shell script?
Help!replace a string in all files under a directory?
什么东东能将目录及其子目录下的.tar文件展开!unix commands question
有没有cp或ftp所有文件和子目录里的文件的命令?Who knows this shell varialbe?
如何只列出文件ask a stupid question about DOS
相关话题的讨论汇总
话题: space话题: 744话题: chmod话题: scripting