add missing regex

This commit is contained in:
Mario Fetka
2024-05-28 16:48:29 +02:00
parent 45939303f6
commit 5ccc070731
25 changed files with 2 additions and 2 deletions

12
release/B/scripts/aslip Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/csh
set DBIN=~archie/bin
set T=telnet-client
set tc=$DBIN/$T
set otc=$DBIN/$T-
set ntc=$DBIN/$T+
if ( -f $T ) then
cp $tc $ntc && cp $T $ntc && rm -f $otc && ln $tc $otc && mv $ntc $tc
else
echo "Error: $T not in current directory"
endif