Nota
The payloads are compatible with GUI mode.
./octave --examples
Funciones y ejemplos de uso
file-read
octave-cli --eval 'format none; fid = fopen("/path/to/input-file"); while(!feof(fid)); txt = fgetl(fid); disp(txt); endwhile; fclose(fid);'
file-write
octave-cli --eval 'fid = fopen("/path/to/output-file", "w"); fputs(fid, "DATA"); fclose(fid);'
shell
octave-cli --eval 'system("/bin/sh")'
./related --binary=octave
Binarios relacionados
Comparten al menos una función con octave.