Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

19
TBE/msys/1.0/bin/lnkcnv Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
# Copyright (C) 2002, Earnie Boyd
# mailto:earnie@users.sf.net
# This file is part of Minimal SYStem.
# http://www.mingw.org/msys.shtml
# File: lnkcnv - .lnk symlink file to actual file converter.
Param1=$1
LinkName=`echo $Param1 | sed -e 's/\.lnk$//'`
FileName=`cat $Param1 | tr '[:cntrl:]' ' ' | \
sed -e 's/ / /g' \
-e 's/ / /g' \
-e 's/ / /g' \
-e 's/ / /g' \
-e 's/ / /g' | \
cut -f 4 -d ' '`
ln -s $FileName $LinkName
rm -f $Param1