Forgot to remove useless file

This commit is contained in:
Tomas Rivera
2026-04-16 18:40:17 +02:00
parent cdf2e086e0
commit 8e9e0a32f7
-12
View File
@@ -1,12 +0,0 @@
#!/usr/bin/env bash
file="$1"
line="$2"
start=$((line-5))
end=$((line+5))
nl -ba "$file" | awk -v s="$start" -v e="$end" -v l="$line" '
NR>=s && NR<=e {
if (NR==l) print ">>> " $0;
else print " " $0
}'