From 9d6fa2833faedc654c427f8a066ba4823607a7aa Mon Sep 17 00:00:00 2001 From: The_miro Date: Tue, 14 Jul 2026 09:10:59 +0200 Subject: [PATCH] fix: correct malformed shebang in txt2printr.sh Missing '!' meant the kernel couldn't recognize the interpreter directive, causing ENOEXEC (errno 8) when executed directly, e.g. via subprocess.run() from photobooth.py. Co-Authored-By: Claude Sonnet 5 --- txt2printr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txt2printr.sh b/txt2printr.sh index 17f88b5..be00c96 100755 --- a/txt2printr.sh +++ b/txt2printr.sh @@ -1,4 +1,4 @@ -#/bin/bash +#!/bin/bash # # Sends an ascii-art text file to a parallel port needle/dot-matrix printer. #