From 9f6f29edf5d43826ef283dcba89f5aefe93430ef Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Tue, 27 Jun 2023 20:00:54 -0400 Subject: changes: yeah --- .local/bin/mfi.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 .local/bin/mfi.py (limited to '.local/bin/mfi.py') diff --git a/.local/bin/mfi.py b/.local/bin/mfi.py new file mode 100755 index 0000000..8cd19cd --- /dev/null +++ b/.local/bin/mfi.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python3 +import sys +import subprocess + +args = sys.argv[1:] +subs = [] +nums = [] +for arg in args: + file = arg.split(':')[0] + r = subprocess.run(['find', '.', '-name', file],stdout=subprocess.PIPE) + subs.append(r) + if ':' in arg: + nums.append(arg.split(':')[1]) + else: + nums.append(0) + +nums.reverse() +args = ['micro'] +for sub in subs: + n = nums.pop() + files = r.stdout.decode().strip().split('\n') + for file in files: + args.append(file+":"+n) + +subprocess.run(args) -- cgit 1.4.1