Файлы System/bin Android 12. Справочник.


  Все     Команда     Скрипт     Служба     Приложение  

dd
Преобразование/копирование файла

Симлинк на: [ ToyBox ]

Тип файла: команда
  Рус  
Toybox 0.8.4-android multicall binary:  (see toybox --help) 
usage:  dd [if=FILE] [of=FILE] [ibs=N] [obs=N] [iflag=FLAGS] [oflag=FLAGS]

        [bs=N] [count=N] [seek=N] [skip=N]
        [conv=notrunc|noerror|sync|fsync] [status=noxfer|none]

Copy/convert files.

if=FILE         Read from FILE instead of stdin
of=FILE         Write to FILE instead of stdout
bs=N            Read and write N bytes at a time
ibs=N           Input block size
obs=N           Output block size
count=N         Copy only N input blocks
skip=N          Skip N input blocks
seek=N          Skip N output blocks
iflag=FLAGS     Set input flags
oflag=FLAGS     Set output flags
conv=notrunc    Don't truncate output file
conv=noerror    Continue after read errors
conv=sync       Pad blocks with zeros
conv=fsync      Physically write data out before finishing
status=noxfer   Don't show transfer rate
status=none     Don't show transfer rate or records in/out

FLAGS is a comma-separated list of:

count_bytes     (iflag) interpret count=N in bytes, not blocks
seek_bytes      (oflag) interpret seek=N in bytes, not blocks
skip_bytes      (iflag) interpret skip=N in bytes, not blocks

Numbers may be suffixed by c (*1), w (*2), b (*512), kD (*1000), k (*1024),
MD (*1000*1000), M (*1024*1024), GD (*1000*1000*1000) or G (*1024*1024*1024).
[ ToyBox ]     [ ManLinux ]