mirror of
https://github.com/a2-4am/4sports.git
synced 2024-11-18 22:05:31 +00:00
12 lines
236 B
Bash
12 lines
236 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
indir=$1
|
||
|
intype=$2
|
||
|
inaddress=$3
|
||
|
cd "$indir"
|
||
|
rm -f _FileInformation.txt
|
||
|
(echo "# This file is automatically generated\n"
|
||
|
for f in *; do
|
||
|
echo "$f=Type($intype),AuxType($inaddress),Access(C3)"
|
||
|
done) > _FileInformation.txt
|