11 lines
		
	
	
		
			124 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			124 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| for c in $@; do
 | |
|   if [[ $c != 0x* ]]; then
 | |
|     c="0x$c"
 | |
|   fi
 | |
|   echo $c | xxd -r
 | |
|   echo -n " "
 | |
| done
 | |
| printf "\n"
 |