mingw -Sucks powershell - needed but sucks wsl - where its at
#!/bin/bash cd c:/Users/charl/Documents/github/karpatic explorer . code .
import re import sqlite3
def print_sticky_notes(): conn = sqlite3.connect('plum.sqlite') c = conn.cursor() c.execute("SELECT Text FROM Note") rows = c.fetchall() for row in rows: text = re.sub(r'\id.*?\s', '', row[0]) # remove text between '\id' and first space print(text) conn.close()