diff --git a/util/listnotes/d.py b/util/listnotes/d.py deleted file mode 100644 index 69a714d..0000000 --- a/util/listnotes/d.py +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env python3 - -#shellnotes - d.py -#(C) Dimitris Marakomihelakis -#Released under the "All rights reserved" category. See the RIGHTS.txt file -#in /docs/github/ for its full text. - -import display -import subprocess -import sys -import os -import time -from os import listdir -from os.path import isfile, join -from pathlib import Path - - -class cd: - """Context manager for changing the current working directory""" - - def __init__(self, newPath): - self.newPath = os.path.expanduser(newPath) - - def __enter__(self): - self.savedPath = os.getcwd() - os.chdir(self.newPath) - - def __exit__(self, etype, value, traceback): - os.chdir(self.savedPath) - - -folder = "cat ~/.shellnotes/util/sd/sd-input3.txt" -files = "eval echo $(cat ~/.shellnotes/util/sd/sd-input3.txt) | xargs ls | wc -l" - - -os.system(folder + "> ~/.shellnotes/util/listnotes/output/dir.txt 2> ~/.shellnotes/util/listnotes/output/direrr.txt") -os.system(files + "> ~/.shellnotes/util/listnotes/output/files.txt 2> ~/.shellnotes/util/listnotes/output/fileserr.txt" ) - -with cd("~/.shellnotes/util/listnotes/output"): - with open("files.txt", 'r') as f: - files = f.read() - with open("dir.txt", 'r') as d: - folder = d.read() - -files = files.strip() -folder = folder.strip() - -home = str(Path.home()) -folder = folder.replace('~', home) - -print(f"\nFound {files} notes in {folder}:\n") - -onlyfiles = [f for f in listdir(folder) if isfile(join(folder, f))] -for file in onlyfiles: - display.underlined(file) - path = folder + '/' + file - listnotes = "head" + " -n" + " 5" + " " + path + "\n" - str(os.system(listnotes + "> ~/.shellnotes/util/listnotes/output/listnotes.txt")) - print() -print("If your note is not shown, try 'findmisplacednote ' to locate it.") - diff --git a/util/listnotes/d.sh b/util/listnotes/d.sh deleted file mode 100644 index 4059770..0000000 --- a/util/listnotes/d.sh +++ /dev/null @@ -1,9 +0,0 @@ -:<<'info' -shellnotes - d.sh -(C) Dimitris Marakomihelakis -Released under the "All rights reserved" category. See the RIGHTS.txt file -in /docs/github/ for its full text. -info - -chmod +x ~/.shellnotes/util/listnotes/d.py -python3 ~/.shellnotes/util/listnotes/d.py \ No newline at end of file diff --git a/util/listnotes/display.py b/util/listnotes/display.py deleted file mode 100644 index df64522..0000000 --- a/util/listnotes/display.py +++ /dev/null @@ -1,11 +0,0 @@ -def underlined(text, symbol = '-'): - print() - print(text) - print(symbol * len(text)) - -def bordered(text, symbol = '*'): - print() - print(symbol * (len(text) + 4)) - print(symbol, text, symbol) - print(symbol * (len(text) + 4)) - print() \ No newline at end of file diff --git a/util/listnotes/dmain.py b/util/listnotes/dmain.py deleted file mode 100644 index 7f0ed2c..0000000 --- a/util/listnotes/dmain.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env python3 - -#shellnotes - dmain.py -#(C) Dimitris Marakomihelakis -#Released under the "All rights reserved" category. See the RIGHTS.txt file -#in /docs/github/ for its full text. - -from d import d -