mirror of
				https://gitcode.com/gh_mirrors/re/react-native-pushy.git
				synced 2025-10-31 21:33:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			212 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			212 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| echo "Running $1 on all running emulators..."
 | |
| devices=`adb devices`
 | |
| 
 | |
| for device in $devices; do
 | |
|     if [[ "$device" =~ "emulator-" ]]; then
 | |
|       adb -s $device $1
 | |
|     fi    
 | |
| done    
 | |
| echo "All Done." | 
