Skip to main content
added 6 characters in body
Source Link
wag
  • 37k
  • 13
  • 68
  • 51

Something like this should also work for you with recent versions of BASH and ZSH: dd if=/path/to/file of=/path/to/another_file bs=1M count=1 &> /dev/null

dd if=/path/to/file of=/path/to/another_file bs=1M count=1 &> /dev/null

P.S. This is just an example I ran...

Something like this should also work for you with recent versions of BASH and ZSH: dd if=/path/to/file of=/path/to/another_file bs=1M count=1 &> /dev/null

P.S. This is just an example I ran...

Something like this should also work for you with recent versions of BASH and ZSH:

dd if=/path/to/file of=/path/to/another_file bs=1M count=1 &> /dev/null

P.S. This is just an example I ran...

Source Link
slashdot
  • 696
  • 5
  • 3

Something like this should also work for you with recent versions of BASH and ZSH: dd if=/path/to/file of=/path/to/another_file bs=1M count=1 &> /dev/null

P.S. This is just an example I ran...