13 lines
400 B
TOML
13 lines
400 B
TOML
|
|
[[Snippets]]
|
|
Description = "mkpy: Edit Python scratch file"
|
|
Output = ""
|
|
Tag = ["python", "scratch"]
|
|
command = "TEMP=$(mktemp)\nmv \"$TEMP\" \"$TEMP.py\"\nprintf '#!/bin/env python\\n\\n' > \"$TEMP.py\"\nchmod +x \"$TEMP.py\"\nhx \"$TEMP.py\""
|
|
|
|
[[Snippets]]
|
|
Description = "clearpy: Clear Python scratch files."
|
|
Output = ""
|
|
Tag = ["python", "scratch"]
|
|
command = "rm -f /tmp/tmp.*.py"
|
|
|