6 lines
		
	
	
		
			108 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			108 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| if [ "$1" != "$2" ]; then
 | |
|    echo "These are different.";
 | |
| else
 | |
|    echo "These are the same.";
 | |
| fi | 
