top | item 44371484

(no title)

mayli | 8 months ago

you are welcome

    cat ~/.local/bin/uve
    #!/bin/bash
    temp=$(mktemp)
    uv export --script $1 --no-hashes > $temp
    uv run --with-requirements $temp vim $1
    unlink $temp

discuss

order

jcotton42|8 months ago

If I may ask, why `unlink` instead of `rm`?

nomel|8 months ago

This is rather silly.