History of everything you copy paste (clipboard)

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ธ.ค. 2024

ความคิดเห็น •

  • @MishaLestev
    @MishaLestev  5 หลายเดือนก่อน

    Here's the 2nd command (script):
    #!/bin/bash
    LOG_FILE=~/clipboard.log
    while true; do
    CURRENT_CLIP=$(pbpaste)
    if [[ "$CURRENT_CLIP" != "$LAST_CLIP" ]]; then
    echo "$(date): $CURRENT_CLIP" >> "$LOG_FILE"
    LAST_CLIP="$CURRENT_CLIP"
    fi
    sleep 1
    done