Sponsored Content
Full Discussion: FTP automated?
Top Forums UNIX for Dummies Questions & Answers FTP automated? Post 2496 by n9ninchd on Wednesday 16th of May 2001 01:52:26 PM
Old 05-16-2001
Well - tried it, and even with that it still trys to put those IDs in instead of a variable

example

cd $Src_Dir

It trys to change to a directory /$Src_Dir

Don't work - any other ideas?

Solaris 7
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Automated FTP

My requiremnet is to write a FTP script which will ftp a file to a specified ftp url. How can I automate the process usnig the unix cron. (11 Replies)
Discussion started by: shauche
11 Replies

2. UNIX for Dummies Questions & Answers

one time automated ftp session

How can an automated script be setup to run at a later time in the day. cron runs recurring tasks. I am interested in a one time process. I want to back up a number of files whenever I make changes to an application and ftp for backup purposes. The script to automate the zipping of files has... (1 Reply)
Discussion started by: msmkeml
1 Replies

3. IP Networking

Automated ftp for Multiple files

I have seen the script posted yesterday for automated ftp Can we do some thing like ftp ing multiple files in one script Example input.txt has all files names to be ftped input.txt ------ a.tar b.ccp c.perl i need to ftp all the files present in input.txt i tried something like... (0 Replies)
Discussion started by: pbsrinivas
0 Replies

4. Shell Programming and Scripting

automated ftp.

Hi I am trying to delete some specific files ( files other than created today) from the server on a cron basis. I wrote a small script, but I am stuck up in how to delete only specific files. #!/usr/bin/expect -f set IP set timeout -1 spawn ftp $IP expect ): send "username\n"... (10 Replies)
Discussion started by: sangfroid
10 Replies

5. Shell Programming and Scripting

how to devlop automated FTP in UNIX

Automated FTP. hint : use 'atd' to schedule to run a specific script. An Env Variable should be created,say CONF_DIR which points to some dir. @ some time, create a TAR file of this and FTP it to some server. (3 Replies)
Discussion started by: vishalzone2002
3 Replies

6. Shell Programming and Scripting

Automated FTP

I want to do Automated FTP from linux client to LINUX server using a shell script after every one hour. And copies last most updated file from Linux server. OR You can say that whenever files get modified on LINUX server so it also copies on my LINUX client. Linux SERVER path=... (4 Replies)
Discussion started by: wakhan
4 Replies

7. IP Networking

Automated FTP task

Every day i ftp tar.gz a file from the production server to a back up machine.. This task creates way to much traffic on the network at the end of the day and puts and undo load on the production machine during operation hours. i would like to create a script that would automatically fire off the... (36 Replies)
Discussion started by: LowOrderBit
36 Replies

8. Shell Programming and Scripting

Automated FTP script using .netrc to multiple FTP servers

Hi all, I'm using the following script to automated ftp files to 1 ftp servers host=192.168.0.1 /usr/bin/ftp -vi >> $bkplog 2>&1 <<ftp open $host bin cd ${directory} put $files quit ftp and the .netrc file contain machine 192.168.0.1 login abc... (4 Replies)
Discussion started by: varu0612
4 Replies

9. Shell Programming and Scripting

Automated FTP

Hello,I just know the basics of scripting & I need a script to automate ftp since I use it quite often. I use ftp to transfer different kind of files and everytime the source & the destination directories are different for transferring files, so can anyone help me out on this urgently.. (2 Replies)
Discussion started by: mohit_02mar
2 Replies
VILEGET(1)						User Contributed Perl Documentation						VILEGET(1)

NAME
vileget - Pass file edit requests to a Vile editor running Vileserv. SYNOPSIS
vileget [-n] [-d] [-w] [-s socket-path] [-c command] [-C command] [file ...] DESCRIPTION
Vileget can be used to load files into an already running instance of Vile or XVile. The editor should have already loaded and started the Vileserv perl module. (See the Vileserv documentation for more detail.) By default, if vileget cannot connect to a running instance of the editor it tries to start a new one. This will only work correctly if you have configured Vile to start Vileserv automatically. (Vileget will try to find an XVile binary first, then look for a Vile binary.) Vileget looks for the Vileserv socket in the user's home directory ($HOME/.vilesock) by default. This can be changed by setting the VILESOCK environment variable, or by using the -s option. If vileget is handed a directory name, it trys to get the target Vile to load the directory.pm module and popup the appropriate directory listing. This only works for the first directory mentioned on the command line, and it only works if the target Vile is configured to accept remote commands (see the -c/-C options). COMMAND-LINE OPTIONS -d With this option, vileget will change the current working directory of the running Vile to be the directory in which vileget is being run, in addition to loading any requested files. -n This tells vileget NOT to try starting a new instance of Vile if necessary. If vileget cannot connect to a running Vile, it will just die with a connection error instead. -w Vileget waits for given file(s) to be written by Vile before exiting. -s socket-path Tells vileget to use the socket given by socket-path. This overrides the default and the environment variable VILESOCK. -c command -C command The -c and -C options can be used to pass arbitrary Vile commands to a running instance of Vile. These can be used at the same time that file edits are being requested, or without giving any files at all. When file arguments are used, the -c option can be used to execute a Vile command before the requested files are loaded. The -C option is used to execute a Vile command after the requested files are loaded. If no file arguments are given, then -c and -C are basically the same, except that -c has precedence. These options are non-repeatable, so you can only execute two Vile commands per invocation of vileget. Of course, there are always procedures... You can have a lot of mindless fun with these two options. For example, you can popup and close the buffer list by repeatedly executing: vileget -c '*' As a nod towards security, command execution is disabled by default in Vileserv. To enable it, you can use setv %vileserv-accept-commands true in your .vilerc file. Note that running something like vileget -c 'setv %vileserv-accept-commands false' can be used to disable remote commands dynamically. Naturally, this is considered to be both a security violation *and* a feature... Passing arbitrary commands to Vile may well produce arbitrary results. The author assumes no liability for edit sessions that have collapsed into singularities, or, as a matter of fact, for anything else. SEE ALSO
vileserv(3), vile(1) AUTHOR
J. Chris Coppick, 1998 (last updated: July 26, 2000) perl v5.14.2 2012-06-03 VILEGET(1)
All times are GMT -4. The time now is 05:53 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy