mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-16 06:28:27 +02:00
12 lines
255 B
Bash
Executable File
12 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
documentPath=$(printf $HOME "/Library/Developer/CoreSimulator/Devices/%s/data/Containers/Shared/AppGroup/" $1)
|
|
printf "Docpath %s\n" $documentPath
|
|
|
|
for directory in $(find $documentPath*/* -maxdepth 1)
|
|
do
|
|
echo $directory
|
|
done
|
|
|
|
echo "done" |