Initial class construction

This commit is contained in:
João Narciso
2019-05-06 16:34:28 +02:00
parent 67f2d57e03
commit 431ff5f7d4
5813 changed files with 1622108 additions and 0 deletions

14
Git/usr/bin/wordpad Normal file
View File

@ -0,0 +1,14 @@
#!/bin/sh
WORDPAD="$(ls {"$PROGRAMFILES/Windows NT","$SYSTEMROOT"}/*/wordpad.exe 2>&- | head -1)"
test $# = 1 &&
case "$1" in
\\*|/*|?:*) ;; # do nothing
*) set "$(pwd -W)/$1";;
esac
test -x "$WORDPAD" && exec "$WORDPAD" "$@"
echo "Could not launch $WORDPAD"
exit 1