9 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/bash
 | |
| path=`pwd`
 | |
| 
 | |
| if [ "$1" == "Debug" ]; then
 | |
| 	$path/dbserver_d $path/DBServerLinux.txt
 | |
| else
 | |
| 	$path/dbserver_r $path/DBServerLinux.txt
 | |
| fi
 |