- Put
m.py
in your path somewhere - Add
m.sh
to your bashrc or similar - Run with
m [+-]mark
-
-
Save csivanich/3844c0be16945c6ecb81b4e17e799470 to your computer and use it in GitHub Desktop.
m.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from sys import argv | |
from os import environ | |
import yaml | |
""" | |
A VIM-inspired filesystem mark setter | |
Allows adding/removing/reading marks from a persisted file | |
Returns 0 if mark successfully looked up and printed to stdout | |
Returns 1 if error | |
Returns 2 if mark successfully added/removed and printed to stdout | |
Generally, this is written with a wrapping shell-script in mind. | |
RC should tell it which behavior to do, and stdout provides the data. | |
""" | |
HOME = environ["HOME"] | |
MARK_FILE = f"{HOME}/.m" | |
marks = {} | |
def usage(): | |
print("USAGE: m [[+-]mark]") | |
def read_marks(): | |
global marks | |
try: | |
with open(MARK_FILE, "r") as f: | |
marks = yaml.load(f, Loader=yaml.Loader) | |
except FileNotFoundError: | |
marks = {} | |
return marks | |
def save_marks(): | |
with open(MARK_FILE, "w") as f: | |
f.write(yaml.dump(marks)) | |
def delete(mark): | |
return marks.pop(mark, None) | |
def add(mark): | |
pwd = environ["PWD"] | |
marks[mark] = pwd | |
return pwd | |
if __name__ == "__main__": | |
name = argv[1] if argv[1:] else None | |
read_marks() | |
if name is None: | |
print(yaml.dump(marks)) | |
exit(2) | |
if name == "--help": | |
usage() | |
exit(2) | |
if name.startswith("-"): | |
print(delete(name[1:])) | |
save_marks() | |
exit(2) | |
if name.startswith("+"): | |
print(add(name[1:])) | |
save_marks() | |
exit(0) | |
result = marks.get(name, None) | |
if result is None: | |
print(f"mark {name} not set") | |
exit(1) | |
else: | |
print(result) | |
exit(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
m () { | |
out=$(m.py "$@") | |
case $? in | |
(0) pushd $out ;; | |
(2) echo $out ;; | |
(*) echo "ERROR: $out" ;; | |
esac | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment