Sponsored Content
Top Forums Shell Programming and Scripting FTP script to FTP file to UNIX - Solaris Post 302122453 by bobk544 on Wednesday 20th of June 2007 01:54:06 PM
Old 06-20-2007
Thanks alot Kimitsin! & Porter! i'm looking into these recommendations right now!

BobK
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

FTP script for sending a file from one unix directory to another unix server director

Hi, My local server is :/usr/abcd/ Remote server is :/Usr/host/test/ I want to send files from local unix directory(All files starting with O_999) to remote host unix directory. Can any body give me the Unix Shell script to do this. One more doubt: Shall we need to change the file... (1 Reply)
Discussion started by: raja_1234
1 Replies

2. UNIX for Advanced & Expert Users

MVS->Unix FTP : Using chmod as part of FTP.

We are transferring file from mainframes to unix, & in FTP process itself we would like to set access rights for unix machine. Has anyone used chmod command in association with site command in ftp? How it should be used? Thanks in advance. (1 Reply)
Discussion started by: videsh77
1 Replies

3. Shell Programming and Scripting

Script needed to FTP a file from sql report to unix server

Hi All, I have a Sqlplus report which will create a file. I need a FTP Script that will be executed inside the Sqlplus Report to FTP the report output file to unix server. Thanks, Previn (0 Replies)
Discussion started by: vprevin
0 Replies

4. UNIX for Advanced & Expert Users

Using FTP to check whether file is completely FTP... plz find the description below

Hi, We have some clients who will place huge files in to one of the remote server. And the shell script written in our local server to retrieve client files (using FTP) placed on one of the remote server of ours by clients. My question Is there any FTP command/script to check from my local... (1 Reply)
Discussion started by: nmsrao
1 Replies

5. Shell Programming and Scripting

passing parameter to ftp script from output of another ftp

Hi, I have a ftp script which first gets all the file names and echo's the latest file. I'm using another ftp command sets to get the file name given by first ftp. The problem is the parameter is not accepted by second ftp. The error message i'm getting is > Rename Temp File calloc:ICMP... (5 Replies)
Discussion started by: ammu
5 Replies

6. 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

7. Shell Programming and Scripting

UNIX script to FTP file from UNIX server to windows

Hi, I am new to this subject.....Can someone please help me out with the script... unix usernm "sdhftst" unix pwd "chsd13" windows usernm "dfghtst" windows pwd "chsd13" path..../xxx/xxxxx/xxxxxx/xxxxxxx please can u get me a script...its only one file to get ftp. Thanks... (2 Replies)
Discussion started by: himakiran9
2 Replies

8. HP-UX

[Solved] Unable to rename file in ftp server .Net:FTP perl

Hello All, I am trying to connect to ftp server and get the files. Also i need to rename the file in other ftp dir. rename method is not allowing me to rename the file in other dir. When i tried copy command by using net::FTP:FILE then perl says it is not installed. Can some body help me to... (2 Replies)
Discussion started by: krsnadasa
2 Replies

9. Shell Programming and Scripting

FTP using script not working (for transfering file from a remote unix server to windows PC.)

hi, Im using the following code for FTP #!/usr/bin/ksh ftp -v -n "10.29.45.11" << cmd user "mahesva" "mahesva123" get rtl.tar quit cmd Below is the log when i run the above code ********************************** Connected to 10.29.45.11. 220 (vsFTPd 2.0.1) 530 Please login with USER... (20 Replies)
Discussion started by: dll_fpga
20 Replies

10. Shell Programming and Scripting

Download latest file via ftp server unix through shell script

Hello this is my first post in this forum , I dont want to be unhappy.. I am writing one script but facing difficulty to find the latest file with some new pattern My requirement is 1. The file is coming like "ABCD-23220140303" at FTP server once in a week. 2. script will run on daily... (3 Replies)
Discussion started by: ajju
3 Replies
mlib_ImageZoomTranslateBlend(3MLIB)			    mediaLib Library Functions			       mlib_ImageZoomTranslateBlend(3MLIB)

NAME
mlib_ImageZoomTranslateBlend - image scaling with alpha blending SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ] #include <mlib.h> mlib_status mlib_ImageZoomTranslateBlend(mlib_image *dst, const mlib_image *src, mlib_d64 zoomx, mlib_d64 zoomy, mlib_d64 tx, mlib_d64 ty, mlib_filter filter, mlib_edge edge, mlib_blend blend, mlib_s32 alpha, mlib_s32 cmask); DESCRIPTION
The mlib_ImageZoomTranslateBlend() function will enlarge or minify the source image by the X and Y zoom factors, with translation, and blend it with the destination image. It uses the following equation for coordinate mapping: xd = zoomx*xs + tx yd = zoomy*ys + ty where a point with coordinates (xs, ys) in the source image is mapped to a point with coordinates (xd, yd) in the destination image. The center of the upper-left corner pixel of an image is located at (0.5, 0.5). The alpha blending is closely combined with the interpolation to achieve better performance. Part of alpha blending has to be performed before or together with the interpolation if the source image has an alpha channel. In that case, the color components of each neighboring source pixel which participates in the interpolation (src_r and etc.) have to be pre-multiplied by the alpha component of the same source pixel (src_a). After the interpolation, the overall alpha (alpha), the interpolated source alpha (interp_a) and the destination pixel's original alpha (dst_a, if any) are used to blend the interpolated source pixel (with components interp_r and etc.) with the destination pixel (with components dst_r and etc.). The MLIB_BLEND_GTK_SRC blending is similar to the SRC rule of the Porter-Duff rules for image compositing. It is defined by Cd = Cs Ad = As in general, and by the following formula for this function: if (interp_a != 0.0) { if (dst_has_alpha) { dst_r = interp_r/interp_a; dst_g = interp_g/interp_a; dst_b = interp_b/interp_a; dst_a = interp_a; } else { dst_r = interp_r; dst_g = interp_g; dst_b = interp_b; dst_a = 1.0; // implied } } else { dst_r = 0; dst_g = 0; dst_b = 0; dst_a = 0; } The MLIB_BLEND_GTK_SRC_OVER or MLIB_BLEND_GTK_SRC_OVER2 blending is similar to the SRC_OVER rule of the Porter-Duff rules for image com- positing. It is defined by Cd = Cs + Cd*(1 - As) Ad = As + Ad*(1 - As) in general, and by the following formula for this function: w = alpha*interp_a + (1 - alpha*interp_a)*dst_a; if (w != 0.0) { dst_r = (alpha*interp_r + (1 - alpha*interp_a)*dst_a*dst_r)/w; dst_g = (alpha*interp_g + (1 - alpha*interp_a)*dst_a*dst_g)/w; dst_b = (alpha*interp_b + (1 - alpha*interp_a)*dst_a*dst_b)/w; dst_a = w; } else if (MLIB_BLEND_GTK_SRC_OVER) { dst_r = 0; dst_g = 0; dst_b = 0; dst_a = 0; } where alpha, src_a, interp_a and dst_a are assumed to be in the range of [0.0, 1.0]. For an image with 4 channels, the first or the fourth channel is considered the alpha channel if cmask equals 8 or 1, respectively. An image with 3 channels is considered to have no alpha channel, which is equivalent to having an alpha channel filled with all 1.0, or 0xff in case of MLIB_BYTE, if the general formulas for blending shown above are used. Both src and dst must be of type MLIB_BYTE. They can have either 3 or 4 channels. The src image cannot have width or height larger than 32767. PARAMETERS
The function takes the following arguments: dst Pointer to destination image. src Pointer to first source image. zoomx X zoom factor. zoomx > 0.0. zoomy Y zoom factor. zoomy > 0.0. tx X translation. ty Y translation. filter Type of resampling filter. It can be one of the following: MLIB_NEAREST MLIB_BILINEAR MLIB_BICUBIC MLIB_BICUBIC2 edge Type of edge condition. It can be one of the following: MLIB_EDGE_DST_NO_WRITE MLIB_EDGE_DST_FILL_ZERO MLIB_EDGE_OP_NEAREST MLIB_EDGE_SRC_EXTEND MLIB_EDGE_SRC_EXTEND_INDEF MLIB_EDGE_SRC_PADDED blend Type of alpha blending. It can be one of the following: MLIB_BLEND_GTK_SRC MLIB_BLEND_GTK_SRC_OVER MLIB_BLEND_GTK_SRC_OVER2 alpha Overall alpha for blending. cmask Channel mask to indicate the alpha channel. RETURN VALUES
The function returns MLIB_SUCCESS if successful. Otherwise it returns MLIB_FAILURE. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
mlib_ImageZoomBlend(3MLIB), mlib_ImageZoomTranslateTableBlend(3MLIB), attributes(5) SunOS 5.10 10 Nov 2004 mlib_ImageZoomTranslateBlend(3MLIB)
All times are GMT -4. The time now is 10:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy