Sponsored Content
Full Discussion: Automate FTP
Top Forums Shell Programming and Scripting Automate FTP Post 51466 by google on Thursday 20th of May 2004 05:37:24 PM
Old 05-20-2004
Hate to be short, but use the search button (upper right hand corner over there!). There are a tremendous amount of examples on this board.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

automate an ftp job

Hi, I am trying to write and automate a ftp job that connects to a IBM mainframe and pulls the same files everyday. To do this I assumen I create a .netrc file in my solaris home directory, then I write a shell script. How do I envoke ftp from a ksh script and pass it the info in .netrc? I... (11 Replies)
Discussion started by: flowrats
11 Replies

2. Answers to Frequently Asked Questions

Automate FTP / Scripting FTP Transfers

One of our most frequent questions is how to automate ftp transfers. There are several approaches. Since I'm writing this post, we will start with my favorite technique. :) In Automated FTP task I present a simple example of my ksh co-process technique. And note that later in this thread I... (0 Replies)
Discussion started by: Perderabo
0 Replies

3. UNIX for Advanced & Expert Users

Automate FTP

Hi all, I got this piece of code in this forum and I can't seem to get it work. The thread already closed so I just post a new thread. #!/usr/bin/ksh ftp -v -n "YOUR.IP.ADD.RESS" << cmd user "user" "passwd" cd /distant/directory lcd /local/directoryget ssh_install get ( or put) your... (4 Replies)
Discussion started by: CamTu
4 Replies

4. Shell Programming and Scripting

How to automate an FTP process?

Hello script experts, I am newbie to shell script. But I have to write a shell script (ASAP) where I need to ftp a file on daily basis to a remote server, and send an email with final status. I I should have a properties file with hostname, Userid, and pwd. And a shall script file should read... (1 Reply)
Discussion started by: ksak
1 Replies

5. Shell Programming and Scripting

Automate daily FTP files

How to automate FTP files daily with the following constraints 1) Try (every 15 mins or 30 mins) FTP till it reconnects 2) Files that arrive in between 5:30 pm and 2:00 am 3) The sat and sun, mon files are to be FTP on monday. 4) Only the txt files are to be FTP'ed. The following are the... (2 Replies)
Discussion started by: bobbygsk
2 Replies

6. IP Networking

Automate FTP process and autorestart on link failure

Hi Guys, i have this lil challenge; i am to implement an automated script that searches/scans a directory for files then picks and sends this files to a very remote server via an ftp link. the challenge here is that the ftp link fails due to netwrk issues maybe; i therefore need to develop... (5 Replies)
Discussion started by: sdcoms
5 Replies

7. Shell Programming and Scripting

How to automate ftp in perl

My situations is I cannot use NET::ftp. So I need to have a way to automate ftp. I know how to do it in ksh: #!/usr/bin/ksh ftp -i -v -n $host_name <<_FTP >> $log_file 2>&1 user $user_name lcd $local_dir cd $remote_dir put $file_name bye _FTP But how can I do it in perl? Note:... (6 Replies)
Discussion started by: egyfan
6 Replies

8. SuSE

automate ispell

Hello!! Is posible to automate ispell?? I have a lot of misspelled text and I want to launch a script that runs ispell choosing for example the first option, all that automatically. Is possible?? Thanks :) (4 Replies)
Discussion started by: elblo
4 Replies

9. UNIX for Advanced & Expert Users

TO Automate the FTP process

Plzz Some One Help in this matter I have scripts to load the data into tables and to copy files from ftp to our system. we use to run the scripts every day.... we hav the files in the FTP server and we hav to bring the files to our system and we hav to load the data into the tables. We... (0 Replies)
Discussion started by: nani1984
0 Replies

10. Shell Programming and Scripting

Automate [ls]ftp

Heyas Seen some of the ftp posts here and knowing i'll be writing a script using ftp soon, so i thought i'd write a script to automate, or at least simplify some basic tasks with it. I'm currently stuck at handling active/passiv modes. Neither lftp nor sftp seem to support them by arguments,... (3 Replies)
Discussion started by: sea
3 Replies
curs_addch(3CURSES)					     Curses Library Functions					       curs_addch(3CURSES)

NAME
curs_addch, addch, waddch, mvaddch, mvwaddch, echochar, wechochar - add a character (with attributes) to a curses window and advance cursor SYNOPSIS
cc [ flag ... ] file ... -lcurses [ library .. ] #include <curses.h> int addch(chtype ch); int waddch(WINDOW *win, chtype ch); int mvaddch(int y, int x, chtype ch); int mvwaddch(WINDOW *win, int y, int x, chtype ch); int echochar(chtype ch); int wechochar(WINDOW *win, chtype ch); DESCRIPTION
With the addch(), waddch(), mvaddch(), and mvwaddch() routines, the character ch is put into the window at the current cursor position of the window and the position of the window cursor is advanced. Its function is similar to that of putchar(). At the right margin, an auto- matic newline is performed. At the bottom of the scrolling region, if scrollok() is enabled, the scrolling region is scrolled up one line. If ch is a tab, newline, or backspace, the cursor is moved appropriately within the window. A newline also does a clrtoeol() before moving. Tabs are considered to be at every eighth column. If ch is another control character, it is drawn in the ^X notation. Calling winch() after adding a control character does not return the control character, but instead returns the representation of the control character. See curs_inch(3CURSES). Video attributes can be combined with a character by OR-ing them into the parameter. This results in these attributes also being set. (The intent here is that text, including attributes, can be copied from one place to another using inch() and addch().) (see standout(), prede- fined video attribute constants, on the curs_attr(3CURSES) page). The echochar() and wechochar() routines are functionally equivalent to a call to addch() followed by a call to refresh(), or a call to wad- dch followed by a call to wrefresh(). The knowledge that only a single character is being output is taken into consideration and, for non- control characters, a considerable performance gain might be seen by using these routines instead of their equivalents. Line Graphics The following variables may be used to add line drawing characters to the screen with routines of the addch() family. When variables are defined for the terminal, the A_ALTCHARSET bit is turned on (see curs_attr(3CURSES)). Otherwise, the default character listed below is stored in the variable. The names chosen are consistent with the VT100 nomenclature. +--------------------+--------------+--------------------------+ | Name | Default | Glyph Description | +--------------------+--------------+--------------------------+ |ACS_ULCORNER |+ | upper left-hand corner | +--------------------+--------------+--------------------------+ |ACS_LLCORNER |+ | lower left-hand corner | +--------------------+--------------+--------------------------+ |ACS_URCORNER |+ | upper right-hand corner | +--------------------+--------------+--------------------------+ |ACS_LRCORNER |+ | lower right-hand corner | +--------------------+--------------+--------------------------+ |ACS_RTEE |+ | right tee | +--------------------+--------------+--------------------------+ |ACS_LTEE |+ | left tee | +--------------------+--------------+--------------------------+ |ACS_BTEE |+ | bottom tee | +--------------------+--------------+--------------------------+ |ACS_TTEE |+ | top tee | +--------------------+--------------+--------------------------+ |ACS_HLINE |- | horizontal line | +--------------------+--------------+--------------------------+ |ACS_VLINE || | vertical line | +--------------------+--------------+--------------------------+ |ACS_PLUS |+ | plus | +--------------------+--------------+--------------------------+ |ACS_S1 |- | scan line 1 | +--------------------+--------------+--------------------------+ |ACS_S9 |- | scan line 9 | +--------------------+--------------+--------------------------+ |ACS_DIAMOND |+ | diamond | +--------------------+--------------+--------------------------+ |ACS_CKBOARD |: | checker board (stipple) | +--------------------+--------------+--------------------------+ |ACS_DEGREE |' | degree symbol | +--------------------+--------------+--------------------------+ |ACS_PLMINUS |# | plus/minus | +--------------------+--------------+--------------------------+ |ACS_BULLET |o | bullet | +--------------------+--------------+--------------------------+ |ACS_LARROW |< | arrow pointing left | +--------------------+--------------+--------------------------+ |ACS_RARROW |> | arrow pointing right | +--------------------+--------------+--------------------------+ |ACS_DARROW |v | arrow pointing down | +--------------------+--------------+--------------------------+ |ACS_UARROW |^ | arrow pointing up | +--------------------+--------------+--------------------------+ |ACS_BOARD |# | board of squares | +--------------------+--------------+--------------------------+ |ACS_LANTERN |# | lantern symbol | +--------------------+--------------+--------------------------+ |ACS_BLOCK |# | solid square block | +--------------------+--------------+--------------------------+ RETURN VALUES
All routines return the integer ERR upon failure and an integer value other than ERR upon successful completion. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+ SEE ALSO
curs_attr(3CURSES), curs_clear(3CURSES), curs_inch(3CURSES), curs_outopts(3CURSES), curs_refresh(3CURSES), curses(3CURSES), putc(3C), attributes(5) NOTES
The header <curses.h> automatically includes the headers <stdio.h> and <unctrl.h>. Note that addch(), mvaddch(), mvwaddch(), and echochar() may be macros. SunOS 5.11 31 Dec 1996 curs_addch(3CURSES)
All times are GMT -4. The time now is 08:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy