mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-04 11:09:27 +00:00
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
indir=$1
|
|
intype=$2
|
|
inaddress=$3
|
|
cd "$indir"
|
|
touch _FileInformation.txt
|
|
(for f in *; do
|
|
echo "$f=Type($intype),AuxType($inaddress),Access(C3)"
|
|
done) >> _FileInformation.txt
|