-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32a16dd
commit a6e037f
Showing
6 changed files
with
1,520 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
all: simctl.txt | ||
|
||
%.txt: FORCE | ||
$(MAKE) "$(basename $@)" &>$@ | ||
|
||
FORCE: | ||
|
||
simctl: | ||
xcrun simctl || true | ||
@for command in $$(xcrun simctl | grep '^\t' | awk '{print $$1}'); do \ | ||
echo; \ | ||
echo xcrun simctl help $$command; \ | ||
xcrun simctl help $$command; \ | ||
done | ||
@# Undocumented/internal commands: | ||
@echo | ||
xcrun simctl help addphoto | ||
@echo | ||
xcrun simctl help addvideo | ||
@echo | ||
xcrun simctl help pbinfo | ||
@echo | ||
xcrun simctl help notify_post | ||
@echo | ||
xcrun simctl help notify_get_state | ||
@echo | ||
xcrun simctl help notify_set_state | ||
@echo | ||
xcrun simctl help register | ||
@echo | ||
xcrun simctl help unregister | ||
@echo | ||
xcrun simctl help keyboard | ||
@echo | ||
xcrun simctl help monitor | ||
@echo | ||
xcrun simctl help appinfo | ||
@echo | ||
xcrun simctl help listapps | ||
@echo | ||
xcrun simctl help bootstatus | ||
@echo | ||
xcrun simctl help darwinup | ||
@echo | ||
xcrun simctl help disk | ||
@echo | ||
xcrun simctl help runtime | ||
@echo | ||
xcrun simctl help reset |
Oops, something went wrong.