$ dd if=file of=file_up conv=ucase ←Converts content from file "file" to uppercase and stores it in file "file_up" |
# dd if=CentOS-6.5-x86_64-bin-DVD1.iso of=/dev/sdc ←Create a bootable disk from an ISO file. # dd if=/dev/sda of=/dev/sdb ←Copy hard drive (/dev/sda --> /dev/sdb) # dd if=/dev/zero of=512M-image bs=512M count=1 ←Generate a 512M-sized file |
For more information on dd operations and examples, please refer to the provided link.