fcp 206 B

123456
  1. #!/bin/sh
  2. # fast copy program (faster than "cp", but copies ALL data incl. permissions)
  3. # note that this only works with directorys as of now
  4. (cd "$1" || exit; tar -cf - .) | (cd "$2" || exit; tar -xf -)