mirror of
https://github.com/skoobasteeve/jamfops.git
synced 2026-03-20 13:08:56 +00:00
10 lines
231 B
Bash
10 lines
231 B
Bash
#!/bin/sh
|
|
|
|
# Intended to be used with the onboarding script (https://github.com/skoobasteeve/jamfops/blob/main/scripts/jamf-onboarding.sh)
|
|
|
|
for file in /tmp/.Onboarding/*; do
|
|
Team="${file##*/}"
|
|
done
|
|
|
|
echo "<result>$Team</result>"
|