6 lines
		
	
	
		
			65 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			65 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| for c in $@; do
 | |
|   echo $c | xxd -p | cut -c1-2
 | |
| done
 |