Sponsored Content
Top Forums Shell Programming and Scripting Any command to delete files from source dir after SFTP copy Post 302546005 by chetancrsp18 on Wednesday 10th of August 2011 07:27:33 AM
Old 08-10-2011
Yeah, I need to do the same operation but with 1 command if possible.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to copy N files from one dir to another

Hi, I have a script that can only handLE limited number of input files. I need to be able to write a command (or a script) that: 1> copies N number of files from one directory (A) to another (B). 2> Files that are moved need to be renamed. 3> Files picked to be moved have... (1 Reply)
Discussion started by: GMMike
1 Replies

2. Shell Programming and Scripting

copy files from one dir to another

Hi , I want to copy files from one dir to anothe dir and check if destination dir exists ,if not exist ,has to create but when executing the below schell script ,the destination directory not exist and exit the shell script. #!/bin/sh src_path=/home/owngdw/abc tgt_path=/home/owngdw/abc/xyz if... (6 Replies)
Discussion started by: mohan705
6 Replies

3. Shell Programming and Scripting

How to copy specified files from list of files from dir A to dir B

Hello, fjalkdsjfkldsajflkajdskl (3 Replies)
Discussion started by: pmeesara
3 Replies

4. Shell Programming and Scripting

A script to find dir, delete files in, and then del dir?

Hello!! I have directories from 2008, with files in them. I want to create a script that will find the directoried from 2008 (example directory: drwxr-xr-x 2 isplan users 1024 Nov 21 2008 FILES_112108), delete the files within those directories and then delete the directories... (3 Replies)
Discussion started by: bigben1220
3 Replies

5. Shell Programming and Scripting

Copy Files to Dir and Check If File Exists

Hi everyone. I am trying to write a bash script that will copy files from one directory to another but I need to be able to check the directory that I'm copying the files to and see if the file already exists. If it does I need to add a number at the end of the copied file. Thanks for your help. (3 Replies)
Discussion started by: snag49ers
3 Replies

6. Shell Programming and Scripting

Copy files from input file with dir structure

hi, I want to copy files from source directory based on input file (or output of previous command) and i want to have the SAME DIRECTORY STRUCTURE. Note that i will have other files and directories which i dont want to copy to destination. For example, dir source has following content:... (22 Replies)
Discussion started by: dragon.1431
22 Replies

7. Shell Programming and Scripting

Copy files and subdirs from dir to a new dir

Hello Comunity I am trying to make a bash shell script that it copies files and subdirs(with files) to a new dir. I would like the dest_dir to contain only subdirectories with files not other subdirs inside. it called : cpflatdir src_dir dest_dir Pleaze help me! Thank you in... (2 Replies)
Discussion started by: BTKBaaMMM
2 Replies

8. Shell Programming and Scripting

files copy to dir

Hi, I have a directory which is having many files. I want to copy 10files at a time to another directory. For example. First 10 files to one directory, then next 10 files to another directory and so on. Please let me know if any work around there for it. Thanks (4 Replies)
Discussion started by: Anjan1
4 Replies

9. Shell Programming and Scripting

Copy files to a dir using from a list

Hi all, I'd very grateful for some help with the following: I have a directory with several subdirectories with files in them. All files are named different, even between different subdirectories. I also have a list with some of those file names in a txt file (without the path, just the file... (5 Replies)
Discussion started by: foracoffee
5 Replies

10. Shell Programming and Scripting

how to copy current date files to another dir

i have directory /abcd and i want to copy all today date files in /xyz directory. i am able to see the files by using below command but not able to understand copy. find . -mtime -1 -type f -exec ls -l {} \; (2 Replies)
Discussion started by: learnbash
2 Replies
VIPS(1) 						      General Commands Manual							   VIPS(1)

NAME
vips - run vips operations from the command line SYNOPSIS
vips [options] [command] [command-options] [command-args] DESCRIPTION
vips(1) is the VIPS universal main program. You can use it to run any VIPS operation from the command line, to query the VIPS function database, and to maintain parts of the VIPS library. To run a VIPS function, the first argument should be the name of the function and following arguments should be the function parameters. For example: $ vips im_invert lena.v lena2.v OPTIONS
-p PLUGIN, --plugin=PLUGIN Load PLUGIN. Note that plugins in $VIPSHOME/lib are loaded automatically. -v, --version Show VIPS version. COMMANDS
list PACKAGE List operations defined in PACKAGE. PACKAGE can also be "classes", "packages" or "all". cpph PACKAGE Print C++ header for PACKAGE. PACKAGE can also be a function name, or "all". cppc PACKAGE Print C++ binding for PACKAGE. PACKAGE can also be a function name, or "all". operation-name operation-arguments Execute a named operation, for example im_invert, or add. Names prefixed with "im_" are called via the vips7 interface, names with- out the prefix use the new vips8 interface. EXAMPLES
Run a vips7 operation. The vips7 interface does not suport optional arguments. $ vips im_invert lena.v lena2.v Run a vips8 operation. Operation options must follow the operation name. $ vips add --imtest=option.jpg lena.v lena2.v out.v Get a "usage" message for an operation $ vips add VipsAdd (add), add two images add left right out where: left :: VipsImage (input) right :: VipsImage (input) out :: VipsImage (output) optional arguments: imtest :: VipsImage (input) booltest :: gboolean (input) RETURN VALUE
returns 0 on success and non-zero on error. SEE ALSO
header(1) COPYRIGHT
The National Gallery and Birkbeck College, 1989-1996. 30 June 1993 VIPS(1)
All times are GMT -4. The time now is 09:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy