Example: Examples Copy one single local file to a remote destination scp /path/to/source-file user@host:/path/to/destination-folder/ So, if you wan to copy the file /home/user/table.csv to a remote host named host.example.com and copy there to jane's home folder, use this command. scp /home/user/table.csv jane@host.example.com:/home/jane/ Copy one single file from a remote server to your current local server scp user@host:/path/to/source-file /path/to/destination-folder Let's say now you want to copy the same file from jane's home folder in host.example.com to your local home folder. scp jane@host.example.com:/home/jane/table.csv /home/user/ Copy one single file from a remote server to another remote server With scp you can copy files between remote servers from a third server without the need to ssh into any of them, all weight lifting will be done by scp itself. scp user1@server1:/path/to/file user2@serve...
Tôi thường gặp các câu hỏi tương tự của đồng nghiệp về vấn đề này. Theo các bạn nếu các bạn là người phân tích CSDL thì việc đầu tiên các bạn nghĩ tới muốn lưu trữ nội dung của AboutUs là gì? Các câu trả lời hệ thống nhất và đơn giải nhất là lưu nó vào một file hoặc là 1 Article/ Post nếu bạn dùng các CMS cơ bản như Wordpress/ Joomla. Còn nếu làm việc trên các nền tảng cơ bản và cổ điển hay ngay cả Node.js Vậy có bạn nào nghĩ rằng nên tạo riêng một table trong Database để lưu trữ nội dung này? Chắc chắn là không nên vì như vậy là một cách quản lý dữ liệu không hiệu quả và tối ưu. Một lý do chắc chắn là các thông tin này là những thông tin tĩnh, ít có sự cập nhật sửa đổi nên chúng ta cần tìm một giải pháp hoàn hảo nhất để quản lý. Và đúng như vậy, các tốt nhất và đơn giản nhất là hãy lưu các thông tin này dưới dạng một records của Post/News/Article table nơi mà bạn lưu trữ toàn bộ bài viết trên website. Nếu bạn muốn tìm hiểu sâu về phâ...