คัดลอกไฟล์ "foobar.txt" จากรีโมตโฮสต์ไปยังโลคัลโฮสต์:
$ scp your_username@remotehost.edu:foobar.txt /some/local/directory
คัดลอกไฟล์ "foobar.txt" จากโลคัลโฮสต์ไปยังรีโมตโฮสต์:
$ scp foobar.txt your_username@remotehost.edu:/some/remote/directory
คัดลอกไดเรกทอรี "foo" จากโลคัลโฮสต์ไปยังไดเร็กทอรี "bar" ของรีโมตโฮสต์:
$ scp -r foo your_username@remotehost.edu:/some/remote/directory/bar
คัดลอกไฟล์ "foobar.txt" จากรีโมตโฮสต์ "rh1.edu" ไปยังรีโมตโฮสต์ "rh2.edu":
$ scp your_username@rh1.edu:/some/remote/directory/foobar.txt your_username@rh2.edu:/some/remote/directory/
คัดลอกไฟล์ "foo.txt" และ "bar.txt" จากโลคัลโฮสต์ไปยังโฮมไดเร็กตอรี่ของคุณบนรีโมตโฮสต์:
$ scp foo.txt bar.txt your_username@remotehost.edu:~
คัดลอกไฟล์ "foobar.txt" จากโลคัลโฮสต์ไปยังรีโมตโฮสต์โดยใช้พอร์ต 2264:
$ scp -P 2264 foobar.txt your_username@remotehost.edu:/some/remote/directory
คัดลอกหลายไฟล์จากรีโมตโฮสต์ไปยังไดเร็กทอรีปัจจุบันของคุณบนโลคัลโฮสต์:
$ scp your_username@remotehost.edu:/some/remote/directory/\{a,b,c\} .
$ scp your_username@remotehost.edu:~/\{foo.txt,bar.txt\} .
สำหรับข้อมูลเพิ่มเติม: สำเนาที่ปลอดภัย