.zip 파일을 다른 서버로 scp한 다음 대상 서버에서 압축을 풀어야 합니다. 리눅스에서 어떻게 할 수 있나요?
답변1
먼저 파일을 서버에 복사한 후 unzip
복사하세요.
scp <file name> user@host:/path/to/destination ; ssh user@host 'unzip /path/to/file on server'
.zip 파일을 다른 서버로 scp한 다음 대상 서버에서 압축을 풀어야 합니다. 리눅스에서 어떻게 할 수 있나요?
먼저 파일을 서버에 복사한 후 unzip
복사하세요.
scp <file name> user@host:/path/to/destination ; ssh user@host 'unzip /path/to/file on server'