Hardlink crontab

This commit is contained in:
tosu 2024-06-22 17:04:06 +02:00
parent d9b21ce70d
commit 79640e5a96
2 changed files with 7 additions and 2 deletions

View File

@ -1 +1,6 @@
0 * * * * /home/tosuman/.local/bin/system_update.sh
# PATH="${PATH:+$PATH:}${HOME}/.local/bin"
WHATEVER="$(echo hi)"
* * * * * echo $PATH > tmp.txt
* * * * * echo $WHATEVER > tmp2.txt
# 0 * * * * /home/tosuman/.local/bin/system_update.sh
# * * * * * PATH="$PATH:" /home/tosuman/.local/bin/backup_file /home/tosuman/

View File

@ -24,7 +24,7 @@ def main() -> int:
input("Press any key to exit")
return 1
matches = re.findall(URL_REGEX, pane_out.decode())
sp.run([os.environ['HOME'] + '/.local/bin/tui_choice.sh'] + matches)
sp.run([os.environ['HOME'] + '/.local/bin/tui_choice'] + matches)
return 0
if __name__ == '__main__':