gpt4 book ai didi

linux - 处理多个文件的 Shell 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 10:15:35 25 4
gpt4 key购买 nike

<分区>

我有以下代码:

#!/bin/bash

filename=$1
file_extension=$( echo $1 | cut -d. -f2 )
directory=${filename%.*}

if [[ -z $filename ]]; then
echo "You forgot to include the file name, like this:"
echo "./convert-pdf.sh my_document.pdf"
else
if [[ $file_extension = 'pdf' ]]; then
[[ ! -d $directory ]] && mkdir $directory
convert $filename -density 300 $directory/page_%04d.jpg
else
echo "ERROR! You must use ONLY PDF files!"
fi
fi

而且它运行良好!

我想创建一个脚本,我可以这样做:./script.sh *.pdf

我该怎么做?使用星号。

感谢您的宝贵时间!

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