bash 中的目录和文件排列

发布于 2024-12-20 05:18:15 字数 535 浏览 0 评论 0原文

我正在尝试编写一个脚本,将具有不同扩展名的文件放入其指定的目录中。

目录中有各种类型的文件,我想将文件按其类型排列在各个目录中。文件分为三种不同类型:

  1. 文本文档 - 带有扩展名的文件。医生,. TXT,。 Pdf、...
  2. 多媒体文件 - 带有扩展名。英里/加仑,.阿维,. Mp3 ...
  3. 图形文件 - 带有扩展名。 .jpg,.动图,. Png ...
  4. 所有其他文件

文件类型 1-3 要移动到各个目录中,其他类型的文件必须移动到名称与扩展名相对应的目录中(您可以将它们变为大写 - BAK、CPP 等)。

我希望脚本使用以下参数运行:

  1. -m 路径 - 如果指定,多媒体文件将被移动到目录 PATH
  2. -d PATH - 指定您必须移动文档的路径
  3. -l 表示当文件名应该导致小写
  4. -x 表示他们移动到小写文件扩展名

有什么想法吗?我是一个新手,我正在尝试学习 bash 脚本,所以我想到了这个问题

I'm trying to write a script that will put files with different extensions into their specified directories .

In the directory are files of various types, i want to arrange the files on individual directories under their type. There are three distinct types of files:

  1. Text documents - files with extensions. Doc,. Txt,. Pdf, ...
  2. multimedia files - with the extensions. Mpg,. Avi,. Mp3 ...
  3. graphics files - with the extensions. Jpg,. Gif,. Png ...
  4. All other files

Files types 1-3 to move into individual directories and files of other types have to move in directories with names corresponding to the extension (you can bring them to uppercase - BAK, CPP ,...).

i want the script to run with the following parameters:

  1. -m path - if specified, the multimedia files will be moved to the directory PATH
  2. -d PATH - specifies the path where you have to move your documents
  3. -l indicates that when the file names should lead to lower case
  4. -x indicates that they move to lower case file extension

any ideas?? I am a newbie and I'm trying to learn bash scripting so I thought of this question

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

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

发布评论

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

评论(1

无远思近则忧 2024-12-27 05:18:15

这应该很容易。了解 mv 的工作原理、如何在 bash 中操作字符串变量(也称为参数扩展)以及如何处理参数。您可以使用 tr 来处理小写和大写。

This should be easy. Learn how mv works, how to manipulate string variables in bash (aka parameter expansion), and how to handle arguments. You can use tr to handle lower- and upper-casing.

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