mirror of
				https://github.com/samba-team/samba.git
				synced 2025-10-30 08:23:49 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			229 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			229 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| ENV="$1"
 | |
| 
 | |
| shift 1
 | |
| 
 | |
| if test -z "$TMPDIR"; then
 | |
| 	TMPDIR="/tmp"
 | |
| fi
 | |
| 
 | |
| TMPFILE=$TMPDIR/gdb_run.$$
 | |
| cat << EOF  > $TMPFILE
 | |
| run
 | |
| bt
 | |
| EOF
 | |
| 
 | |
| trap "/bin/rm -f $TMPFILE" EXIT
 | |
| CMD="gdb -x $TMPFILE --args $@"
 | |
| echo $CMD
 | |
| eval $ENV "$CMD"
 |