linux命令行,使用脚本密码保护文件

发布于 2024-09-09 12:26:31 字数 258 浏览 4 评论 0原文

对于 Linux 脚本来说我真的很陌生,所以我想我应该问一下,而不是浪费时间去拔头发。

我有一个简单的脚本,可以备份我的 linux 机器上的文件夹内容并将其移动到 S3 存储,我希望这个脚本创建一个 zip 文件并用密码保护它,而无需我的任何干预。

我明白了,

zip myarchive.zip /var/www/* -e 

但不知道应该在哪里输入密码以阻止它提示我。

谢谢 克里斯

really new to linux scripting so i figured i would ask rather than waste time pulling my hair out.

i have a simple script that backs up the contents of a folder on my linux box and moves it to S3 storage, i would like this script to create a zip file and password protect it without any intervention from me.

i got it down to

zip myarchive.zip /var/www/* -e 

but cannot work out where i should put the password to stop it prompting me.

thanks
kris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南街女流氓 2024-09-16 12:26:39

您还可以使用文件系统提供的安全功能。这确实是另一个故事,但在大多数情况下它确实可以保护您的信息。

因此,我想在创建存档后对其执行 chownchmod 将防止不需要的用户访问该文件,如果您需要的只是一个只能由某个群体。主要优点是无需记住密码。

You could also use the security features provided by the file system. This is indeed another story, but it does protect your information in most cases.

So I guess doing a chown and chmod on your archive after creating it will prevent unwanted users from accessing the file, if all you need is a file that can only be read by a certain group. The main advantage is that there's no need to memorize a password here.

囍孤女 2024-09-16 12:26:38

这样做存在安全风险,因为这意味着您的密码将以明文形式写入脚本中。

因此,zip 拒绝以这种方式工作。它需要来自键盘的输入,而不是脚本或文件。

我不知道解决方法。

另一方面,至少我的 Ubuntu 发行版中的 zip 提供了一个 -P 密码 选项我认为,允许您在命令行上输入密码。文档围绕此选项提供了适当的警告。

Doing that is a security risk as it means your password will be written in cleartext in your script.

For this reason, zip refuses to work that way. It wants the input from the keyboard, not your script or a file.

I'm not aware of a workaround.

On the other hand, at least the zip in my Ubuntu distribution offers a -P password option which, I think, allows you to enter the password right on the command line. The documentation surrounds this option with the appropriate warnings.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文