5 lines
88 B
Bash
5 lines
88 B
Bash
#!/bin/bash
|
|
SOURCE=/home/test/testfile
|
|
DEST=/home/corrado/testfile
|
|
cp -vp $SOURCE $DEST
|