cli : move all files to a directory
# สร้างโฟลเดอร์ใหม่สำหรับ ebooks ทั้งหมด
mkdir ~/all_ebooks
# ย้ายทั้ง PDF และ EPUB
find . -type f \( -name "*.pdf" -o -name "*.epub" \) -exec mv -t ~/all_ebooks {} +
# ตรวจสอบจำนวนไฟล์ที่ย้าย
find ~/all_ebooks -type f \( -name "*.pdf" -o -name "*.epub" \) | wc -l