Shell 基础{}是为了指定变量名范围,如${AAA}_BBB,否则会将AAA_BBB当作一个整体来解析,这就不对了。 技巧遍历目录下文件并解压: 123456789101112131415161718#!/bin/bashprint_help() { echo "examples:" echo "./unzip.sh /data/file.zip"}if [ $# == 0 ]; then print_help exit 0fiDataDir=$1for File in "$DataDir"/*.zip; do OutputDir=${File%.*} if [ -f "$File" ]; then unzip -o "$File" -d "$OutputDir" fidone tools #Tool #Linux Shell https://laplac2.github.io/tools/shell/ 作者 Laplace 发布于 2022年11月1日 许可协议 CUDA 上一篇 FlatBuffers 下一篇