2023-10-24

MongoDB - Update a field using the value of another field

db.COLLECTION_NAME.updateMany(

{},

[{$set: {

"target_field": "$source_field"

}}]

);

2023-10-11

MacOS - Rename extensions for all files in a folder

 for f in *.png; do 

    mv -- "$f" "${f%.png}.jpg"

done