📌  相关文章
📜  移动文件以选择 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:41:04.572000             🧑  作者: Mango

移动文件以选择 - Shell-Bash

在Shell-Bash编程中,移动文件是常见的操作之一。但是,如果要处理大量文件,手动一个一个移动将会非常浪费时间。因此,在Shell-Bash中,我们可以使用“选择”命令来批量移动文件。

选择命令

选择命令(select)是Shell-Bash的一种循环结构,可以在一堆选项中进行选择。通常是结合数组来使用,我们可以使用循环结构将数组中的每个元素进行显示,并让用户进行选择。

select语法格式如下:

select var in word1 word2 ... wordN
do
   command1
   command2
   ...
   commandN
done

其中var用于接收用户输入的选择,word1到wordN是用空格隔开的要选择的选项列表,command1到commandN是将要执行的命令。

示例

我们可以使用选择命令来批量移动指定目录下的所有txt文件,并将所有txt文件移动到一个新的目录中。

#!/bin/bash

# 指定要移动文件的目录
source_dir="/path/to/source/directory"

# 指定新的目录
new_dir="/path/to/new/directory"

# 显示所有txt文件列表
files=($source_dir/*.txt)
echo "请选择要移动的文件:"
select file_name in "${files[@]}"; do
    if [ -n "$file_name" ]; then
        echo "您选择的文件是: $file_name"
        # 移动文件到新目录
        mv "$file_name" "$new_dir"
        break
    else
        echo "输入错误,请重新选择."
    fi   
done

以上脚本会列出指定目录下的所有txt文件列表,让用户进行选择,选择之后将文件移动到指定的新目录中。

总结

在Shell-Bash编程中,使用选择命令可以很方便地批量移动文件。使用选择命令可以大大减少手动操作的时间和精力,提高工作效率。