"chmod +x <filename>" 有什么作用以及如何使用它?

use*_*696 66 permissions scripts chmod executable execute-command

我想编写“批处理文件”(shell 脚本)的 Ubuntu 模拟。但是我不知道如何使用命令来制作它以便可以运行脚本。我也不知道在哪里使用它。chmod +x filename

v2r*_*v2r 70

简而言之:

chmod +x在文件(您的脚本)上仅意味着您将使其可执行。右键单击您的脚本并选择Properties -> Permissions -> Allow execution of file as program,结果与终端中的命令完全相同。

如果您要更改权限的文件位于系统目录中,您可能需要root这样:(使用sudo命令时要小心)

sudo chmod +x /usr/share/testfolder/aFile 
Run Code Online (Sandbox Code Playgroud)

也不清楚,你到底想在这里存档什么。请编辑您的问题并提供有关实际问题的更多详细信息!

您也可以参考这个问题,了解更多信息:chmod u+x' vs 'chmod +x


在长:

键入man chmod在终端窗口(Ctrl+ Alt+ T),你会得到以下的输出:


名称: chmod - 更改文件模式位

概要

chmod [OPTION]... MODE[,MODE]... FILE...
chmod [OPTION]... OCTAL-MODE FILE...
chmod [OPTION]... --reference=RFILE FILE...
Run Code Online (Sandbox Code Playgroud)

描述

This  manual page documents the GNU version of chmod.  chmod changes the
file mode bits of each given file according to mode, which can be either
a  symbolic representation of changes to make, or an octal number repre?
senting the bit pattern for the new mode bits.

The format of a symbolic mode  is  [ugoa...][[+-=][perms...]...],  where
perms  is  either  zero or more letters from the set rwxXst, or a single
letter from the set ugo.  Multiple symbolic modes can  be  given,  sepa?
rated by commas.

A  combination  of  the letters ugoa controls which users' access to the
file will be changed: the user who owns  it  (u),  other  users  in  the
file's  group (g), other users not in the file's group (o), or all users
(a).  If none of these are given, the effect is as if a were given,  but
bits that are set in the umask are not affected.

The  operator  +  causes  the selected file mode bits to be added to the
existing file mode bits of each file; - causes them to be removed; and =
causes them to be added and causes unmentioned bits to be removed except
that a directory's unmentioned set  user  and  group  ID  bits  are  not
affected.

The  letters  rwxXst  select file mode bits for the affected users: read
(r), write (w), execute (or search for directories) (x),  execute/search
only  if  the  file is a directory or already has execute permission for
some user (X), set user or group ID on execution (s),  restricted  dele?
tion  flag  or sticky bit (t).  Instead of one or more of these letters,
you can specify exactly one of the letters ugo: the permissions  granted
to  the  user  who  owns  the file (u), the permissions granted to other
users who are members of the  file's  group  (g),  and  the  permissions
granted  to  users  that  are in neither of the two preceding categories
(o).

A numeric mode is from one to four octal digits (0-7), derived by adding
up  the  bits with values 4, 2, and 1.  Omitted digits are assumed to be
leading zeros.  The first digit selects the set  user  ID  (4)  and  set
group ID (2) and restricted deletion or sticky (1) attributes.  The sec?
ond digit selects permissions for the user who owns the file: read  (4),
write  (2),  and  execute  (1);  the third selects permissions for other
users in the file's group, with the same  values;  and  the  fourth  for
other users not in the file's group, with the same values.

chmod  never changes the permissions of symbolic links; the chmod system
call cannot change their permissions.  This is not a problem  since  the
permissions  of  symbolic  links are never used.  However, for each sym?
bolic link listed on the command line, chmod changes the permissions  of
the  pointed-to file.  In contrast, chmod ignores symbolic links encoun?
tered during recursive directory traversals.
Run Code Online (Sandbox Code Playgroud)

SETUID 和 SETGID 位

chmod clears the set-group-ID bit of a regular file if the file's  group
ID  does  not  match  the user's effective group ID or one of the user's
supplementary group IDs, unless the  user  has  appropriate  privileges.
Additional  restrictions may cause the set-user-ID and set-group-ID bits
of MODE or RFILE to be ignored.  This behavior depends on the policy and
functionality of the underlying chmod system call.  When in doubt, check
the underlying system behavior.
Run Code Online (Sandbox Code Playgroud)

选项

Change the mode of each FILE to MODE.

   -c, --changes
          like verbose but report only when a change is made

   --no-preserve-root
          do not treat `/' specially (the default)

   --preserve-root
          fail to operate recursively on `/'

   -f, --silent, --quiet
          suppress most error messages

   -v, --verbose
          output a diagnostic for every file processed

   --reference=RFILE
          use RFILE's mode instead of MODE values

   -R, --recursive
          change files and directories recursively

   --help display this help and exit

   --version
          output version information and exit

   Each MODE is of the form `[ugoa]*([-+=]([rwxXst]*|[ugo]))+'.
Run Code Online (Sandbox Code Playgroud)

  • 这个答案对我来说很有趣,因为我在来到这里之前先阅读了手册页,因为手册页没有提到 +x。您是否有理由将整个手册页粘贴到此处?您的“简而言之”是我需要的答案(chmod 上的 +x 是什么?),但从我(也许无知)的角度来看,它不是您粘贴的手册页的摘要。 (3认同)
  • “文件(您的脚本)上的 chmod +x 仅意味着您将使其可执行”我猜您的意思是对*所有*用户可执行,对吗?至少我是这样解释手册页的。`chmod u+x` 只会让它对你可执行 (3认同)
  • 我想提一下,此处发布的手册页中以“运算符 +...”和“字母 rwxXst...”开头的段落给出了回答问题的详细解释。结合前两者,介绍命令的格式和如何使用,可以让大家对命令的工作原理有一个整体的了解,这就是手册页的目的。声称已阅读手册页而没有找到该命令的常见用法的答案是可笑的,因为手册页虽然很长,但相对清晰。 (3认同)
  • 你指出这一点是完全正确的,亚历克斯,这有点有趣!为了完整起见,我添加了整个手册页,因为如果我要寻找尚未获得的信息,我会更喜欢这种方式。实际上我过去发现很多手册页都是这样的,就像你在这里描述的那样。很高兴我能帮上忙! (2认同)

小智 9

一个批处理文件shell脚本有两个方面有效好心的Linux下的相同。不过,脚本一词的使用频率要高得多

最简单的 shell 脚本文件只包含您在命令行中键入的命令(即 Bash 命令解释器)。理论上,您甚至可以用您喜欢的任何语言替换口译员(并为其配备口译员)。更明确地说,建议您从第一行开始

#!/bin/sh (如果您不想在遗留系统中获得最大的可移植性)

或者

#!/bin/bash (如果你想要一些额外的功能,你今天可能不在乎)

在这一行之后输入您的命令,每行一个。有很多额外的结构超出了这个问题的范围,请参阅man bashhttp://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf(初学者)或http://www .tldp.org/LDP/abs/abs-guide.pdf(更高级的问题)。

要实际运行您的脚本,有两个要求:首先,解释器进程需要读取文件,其次检查它是否被标记为可执行文件。为方便起见,能够写入您的脚本也很有用(这样您就可以进行必要的更改或修复)。

进一步假设您希望团队成员和其他人也能够运行(并查看)您的脚本,但您不希望他们操作它,组合

  • 对所有人执行权限(a+x+xa默认情况下),
  • 所有人的读取权限(a+r+ra再次默认),
  • 只为您写权限 ( u=w)

通常是文件权限的合理值。您可以键入串联的单个操作,用逗号分隔。

虽然这种“动作语言”非常吸引人(注意+=操作符的差异,这会导致不同的结果,具体取决于更改之前的权限设置),但键入它们很乏味。

由于所有操作都会创建在内部应用的位掩码,因此您也可以直接键入位掩码(请参阅man chmod有关详细信息)。

对于 shellscript chmod 755 myscript.sh在至少 95% 的情况下最有意义。


Jo-*_*tad 6

首先,您的脚本必须声明要使用的解释器。您在文件的第一行执行此操作。如果它是一个 shell 脚本,它应该是#!/bin/shor #!/bin/bash

所以这是一个写入您的用户名的脚本: echo-whoami.sh

#!/bin/sh
echo $(whoami)
Run Code Online (Sandbox Code Playgroud)

要使其可执行,请使用:

chmod +x echo-whoami.sh
Run Code Online (Sandbox Code Playgroud)

然后您可以使用以下命令运行它:

./echo-whoami.sh
Run Code Online (Sandbox Code Playgroud)

  • 这真的没关系。:) 重点只是制作一个可以清楚解释某些内容的可执行脚本。如果在脚本中使用 echo $(whoami) 没有意义,那么将 whoami 添加到脚本文件有什么意义呢?同样毫无意义,对吧?:) (2认同)