Shxtou / copydata.sh
NhatMinhhh's picture
Upload 2 files
cbb7b1b
raw
history blame contribute delete
512 Bytes
#!/bin/bash
# Đường dẫn tới thư mục nguồn
source_dir="$HOME/SillyTavern1/public/"
# Đường dẫn tới thư mục đích
destination_dir="$HOME/SillyTavern/public/"
# Sao chép tất cả các file trong thư mục characters
cp -r "$source_dir/characters"/* "$destination_dir/characters/"
# Sao chép tất cả các file trong thư mục chats
cp -r "$source_dir/chats"/* "$destination_dir/chats/"
echo "Đã sao chép dữ liệu nhân vật và chats của bạn thành công! Há há"