123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #!/bin/bash
-
-
- manage_files() {
-
- folder_a="$1"
- folder_b="$2"
-
-
- if [[ ! -d "$folder_a" ]]; then
- echo "Source folder '$folder_a' does not exist!"
- return 1
- fi
-
- if [[ ! -d "$folder_b" ]]; then
- echo "Destination folder '$folder_b' does not exist!"
- return 1
- fi
-
-
- abs_folder_a=$(realpath "$folder_a")
- abs_folder_b=$(realpath "$folder_b")
-
-
- for file in "$abs_folder_a"/*; do
-
- if [[ -f "$file" ]]; then
- filename=$(basename "$file")
- destination="$abs_folder_b/$filename"
-
-
- if [[ ! -e "$destination" ]]; then
-
- ln -s "$file" "$destination"
- echo "Linked '$file' to '$destination'"
- else
- echo "File '$destination' already exists, skipping..."
- fi
- fi
- done
-
-
- find "$abs_folder_b" -type l -name "*.js" -exec rm {} \;
- echo "All symbolic links to .js files have been removed."
-
-
- for file in "$abs_folder_a"/*.js; do
-
- if [[ -f "$file" ]]; then
- filename=$(basename "$file")
- destination="$abs_folder_b/$filename"
-
-
- if [[ ! -e "$destination" ]]; then
-
- cp "$file" "$destination"
- echo "Copied '$file' to '$destination'"
- else
- echo "File '$destination' already exists, skipping..."
- fi
- fi
- done
- }
-
-
-
- manage_files "./chess-server-lib/common/models" "./cihsr-server/cihsr/models"
- manage_files "./chess-server-lib/common/lib/vmodel" "./cihsr-server/cihsr/lib/vmodel"
|