gpt4 book ai didi

linux - bash 中的参数

转载 作者:太空宇宙 更新时间:2023-11-04 05:06:17 26 4
gpt4 key购买 nike

这个脚本将所有文档文件移动到指定的目录......我已经设法放置一个参数,但我面临的问题是放置脚本移动到的完整路径,例如我想运行如下所示的脚本

./loo -d then path where im moving the files (i.e ./loo -d the second argument where files are moving to)

这是我的代码

#!/bin/bash
From="/home/elg19/lone/doc"
To="/home/elg19/documents"

if [ $1 = -d ]; then
cd "$From"
for i in pdf txt doc; do
find . -type f -name "*.${i}" -exec mv "{}" "$To" \;
done
fi

最佳答案

我不确定具体问题是什么?

如果完整路径包含空格,是否需要在完整路径周围添加 "
./loo -d“带空格的完整路径”与 $1 类似,可以使用 $2 检索完整路径。

关于linux - bash 中的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8551200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com