Quickies

[categories] [index] [all (527)] [latest]

Unix
  1. $ ./hello
    Hello world
    
    $ xxd hello > hello.hex
    
    $ xxd -r hello.hex > hello2
    
    $ chmod hello2
    
    $ ./hello2
    Hello world
    

    Use -p for dumping and reloading a file without addresses.