123456789101112131415161718192021222324252627282930313233 |
- #!/bin/bash
- source_file="/opt/adweb3/config/wp-html.php"
- target_directory="/usr/local/wwwtemplate/"
-
- if [ ! -f "$source_file" ]; then
- echo "源文件不存在"
- exit 1
- fi
-
- if [ ! -d "$target_directory" ]; then
- echo "目标目录不存在"
- exit 1
- fi
-
- first_level_subdir=$(find "$target_directory" -maxdepth 1 -type d -printf "%P\n")
- echo "获取到所有子目录:$first_level_subdir"
- for subdir in $first_level_subdir; do
- cp -f $source_file $target_directory$subdir
- echo "Copied $source_file to $target_directory$subdir"
- done
|