-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchid_append.py
37 lines (26 loc) · 984 Bytes
/
chid_append.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from __future__ import annotations
import sys
from chid_utils import get_destination_path, get_history_directory_path
def main():
if len(sys.argv) < 5:
return
dir = sys.argv[1]
command = sys.argv[2].strip()
date = sys.argv[3]
alias = sys.argv[4]
history_directory_path = get_history_directory_path()
# Do not allow to create new history inside history directory
if dir.startswith(str(history_directory_path)):
return
if command.startswith("chid ") or command.startswith(f"{alias} ") or command in [alias, "chid", ""]:
return
destination_path = get_destination_path(history_directory_path, dir)
destination_path.mkdir(parents=True, exist_ok=True)
destination_file = destination_path / "chid_commands"
with open(destination_file, "a") as file:
file.write(f"{date};{repr(command)[1:-1]}\n")
if __name__ == "__main__":
"""
Arguments: Directory, Command, Date, Alias
"""
main()