Como faço para criar um arquivo que tenha X bytes de 0, Y bytes do número 7 (ou seja, 0x07 em hexadecimal, 00000111 em binário), Z bytes aleatórios e T bytes do número 25 (0x19 em hexadecimal, 00011001 em binário). Finalmente, este arquivo deve ter tamanho X+Y+Z+T bytes.
Responder1
Instale 'ghex' do centro de software.
Vá para um terminal e execute touch hexfile
.
Abra o ghex e, em seguida, abra o 'hexfile'.
Pressione inserir e digite os bytes desejados.
Salvar.
Você pode salvar algo assim em um arquivo, alterar as variáveis (conforme as instruções) e torná-lo executável ( chmod +x filename
) e, em seguida, executá-lo ./filename
.
#!/bin/bash
#(C) 2011 Erik B. Andersen This script is licensed under the latest non-draft
#version of the AGPL as published by the Free Software Foundation (currently
#at http://www.gnu.org/licenses/) .
# Set the following four variables.
X=
Y=
Z=
T=
#######Don't need to change anything past here.
y=0
t=0
head -c $X /dev/zero >> structurefile
while [ $y -lt $Y ]; do echo -n -e "\x07"; y=$(($y+1)); done >> structurefile
head -c $Z /dev/urandom >> structurefile
while [ $t -lt $T ]; do echo -n -e "\x19"; t=$(($t+1)); done >> structurefile