Copy files from SVN Server


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Copy files from SVN Server
# 1  
Old 07-23-2012
Question Copy files from SVN Server

Hi,

We have a SVN server on which the developers upload their source code which is in the form of a .ear file or a folder.

We login to the SVN server using our credentials and then go to the directory in which the application is placed and then click on the download link to download the application to our local windows machine.

We then upload this application from our windows Desktop to the unix server on which it needs to be deployed.

Can you let me know if there is a way to directly copy the application from the SVN server onto the unix server and command / scripts to automate this task as much as one could?
# 2  
Old 07-23-2012
use "wget" command
wget [options] <svnlink>
# 3  
Old 07-24-2012
Question

Quote:
Originally Posted by linuxcmdsnewbie
use "wget" command
wget [options] <svnlink>
Does HP-UX have wget ?

Code:
wget
bash: wget: command not found

# 4  
Old 07-24-2012
1. try "curl"

2. if you have SVN on unix box try svn export <svn_url>
# 5  
Old 07-25-2012
Question

Quote:
Originally Posted by zedex
1. try "curl"

2. if you have SVN on unix box try svn export <svn_url>
I do not have curl either. Can you please refer me to some shell script to do this job for me ?

Also, can you help me steps to install wget on my local home directory and then how do I use it.

Note: I do not have administrator rights.
# 6  
Old 07-25-2012
in Redhat wget is inbuilt.. i am not sure about hp-ux.. try to install it
# 7  
Old 07-25-2012
Quote:
Originally Posted by mohtashims
I do not have curl either. Can you please refer me to some shell script to do this job for me ?

Also, can you help me steps to install wget on my local home directory and then how do I use it.

Note: I do not have administrator rights.
i can not think of any other option ( maybe perl script but you might have to download and install module(s) - not sure about this one )

for wget on hp-ux : HP Communities - Availability of wget in hpux - Enterprise Business Community

i am pretty sure that you wont be allowed to install but still just for your reference ...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Copy multiple .txt files from one server to another server

:wall:Hi all, I have two servers : server A and server B Weekly wise i use to receive files to server A to one particular location say /source/location . NOTE: In this location there will be other files also present other than these weekly arrival 18 files. My task : i need a... (7 Replies)
Discussion started by: karmegam
7 Replies

2. UNIX for Dummies Questions & Answers

[Solved] Need help to copy files to another server

Hi all, I need a shell script to compress and transfer only last modified(new) file from one linux server to another linux sever. the files i need to backup are 2 files .txt & .log which will be created in the same folder for every 3-4hrs and this script need to run once in 24hrs. so only... (5 Replies)
Discussion started by: basszzz
5 Replies

3. Shell Programming and Scripting

Copy files from Linux server to Windows server

Hi All, I am generating report in a Linux server and once the report is generated the report(.txt file) needs to be automatically saved in a Windows servers. So i am looking for a script to transfer the file automatically from Linux server to Windows server? Please advise. Thanks... (3 Replies)
Discussion started by: arunmanas
3 Replies

4. Shell Programming and Scripting

Copy folder and files from unix server to linux server

We would be migrating unix solaries to Linux redhat. Basically source is unix and target is linux. i would like to copy entire file system unix/source/* to target linux/souce/* but target linux has only folder setup so what ever files copied need to be placed in the linux server with same... (8 Replies)
Discussion started by: balajikalai
8 Replies

5. Solaris

How to integrate SVN client to SVN server repository.

Hi, I am new to SVN configuration on Solaris 10.I have installed SVN client version 1.7. bash-3.00# ./svn --version svn, version 1.7.4 (r1295709) compiled Mar 2 2012, 12:59:36 Here my requirement is how to integrate svn client to One of the SVN server repository. My repository... (0 Replies)
Discussion started by: muraliinfy04
0 Replies

6. Shell Programming and Scripting

Copy latest files from another server

Hi, I wanted to copy monthly generated csv file(s)( of latest date) at one server to my current server. So I wrote the following script, but does not work. The script is invoked on my current server Can you please help? !/bin/ksh #. /apps/comp/ cd /apps/di/dev/import/paper ssh hpqad02... (3 Replies)
Discussion started by: Alok Ranjan
3 Replies

7. UNIX for Advanced & Expert Users

Best way to Copy Files From One server to another server

Hi , I have two servers say server A and server B. I am generating some files in server A which I have to copy to Server B,what will be the best option and why it is better than the other( as I have to copy more than 3 GB data files daily) 1.FTP - I can't use FTP bcoz it's not allowed due to... (2 Replies)
Discussion started by: wangkc
2 Replies

8. Shell Programming and Scripting

(yet another) copy files from windows to server question

Hi all, I spent the last few hours Googling for a solution without result, so here goes: I have Windows server 'source' that produces files that need to be copied to an external Linux server 'target'. I initiate this process from AIX server 'jobrunner'. An additional step is a Linux server... (2 Replies)
Discussion started by: whbos
2 Replies

9. UNIX for Dummies Questions & Answers

Copy files from remote server

Hi Friends, Could you please help me as per my requirement mentioned below ? I have to copy files from one unix server to another unix server, and the files that i need to copy from the remote server are only those which are modified/created Today from abc directory on the remote server (1 Reply)
Discussion started by: ramask
1 Replies

10. Shell Programming and Scripting

copy files from remote server (B) to target server (A)?

Hi All, what is the comand to log off the remote server? I have 2 servers A, B. I need to find all files older than 7 days on server B and copy over to server A. My logic is: login the remote server: ================= ssh hostB cd /data/test find . -mtime -7 -ls | awk '{print... (4 Replies)
Discussion started by: Beginer0705
4 Replies
Login or Register to Ask a Question