mirror of
				https://github.com/jart/cosmopolitan.git
				synced 2025-10-27 11:26:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			156 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			156 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| UNAMEM=$(uname -m)
 | |
| UNAMES=$(uname -s)
 | |
| if [ x"$UNAMES" = x"Darwin" ] && [ x"$UNAMEM" = x"arm64" ]; then
 | |
|   exec ape "$@"
 | |
| else
 | |
|   exec rusage "$@"
 | |
| fi
 |