Can we delete file using PSCP?


 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions Can we delete file using PSCP?
# 1  
Old 01-10-2009
Can we delete file using PSCP?

Hello,

I am using PSCP to do file transfer from remote server to window system. It works well.

But the file is only copying, but in my case once after file copied, we should not have the same file on the remote server it should be moved to the windows system or deleted on the remote server after copied.

So please give me a suggestion how to delete that file on remote server using PSCP.

--
Thanks,
Mohan
# 2  
Old 01-10-2009
PSCP does not support deleting a file. psftp does. See the pscp download page to download psftp.
# 3  
Old 01-12-2009
Thanks, I will use PSFTP instead of PSCP.

I have few questions if i use PSFTP

I am using the below syntax to connect to server,
psftp.exe -l testlogin -pw testpassword -b script.bat host.name.net
all my file movement code in script.bat

script.bat contains:
cd SERVER/GETFILE
lcd C:\INBOUND
get Test one.txt
quit


1. How to get latest file from the server, example i am using test one.txt
2. How to get return codes from the script.bat
3. How to rename file name "Test one.txt" to "YYYYMMDDHHDDSS.txt" when GET
4. How to rename file name "YYYYMMDDHHMMSS.txt" to "Test one.txt" when PUT

Can you please clear my questions i can do all these using PSCP but, when i use code in the script.bat it doesn't recognizes keywords like "@ echo off" "IF" "SET etc.


If i have a way to delete file using PSCP, or any idea to delete that file from server from the same script program i dont have to change all the code again.

--
Thanks
Mohan
# 4  
Old 04-03-2009
The renaming of the files should be done by the batch file before / after the call to the psftp program. It does the transfer, it doesn't have to do everything else, that is why you have a batch file. The script.bat file is instructions for psftp. The place for the other instructions should be in the .bat file that calls psftp. To make things clearer, rename script.bat to script.spftp. This is not a .bat file so should not be labeled as a .bat file!
# 5  
Old 05-08-2009
Can we delete file using PSCP?

Use PSCP.EXE to get the file and PSFTP.EXE to delete after checking the return code.

PSCSP.EXE [options]
IF “%ERRORLEVEL%” == “1” GOTO ERROR
PSFTP.EXE [options] -b del.batch
GOTO END
:ERROR
ECHO "There was an error getting the file."
REM Use blat.exe to send emails. SourceForge.net: Blat - A Win32 Command Line SMTP Mailer
:END
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Delete files whose file names are listed in a .txt file

hi, I need a help. I used this command to list all the log files which are for more than 10 days to a text file. find /usr/script_test -type f -mtime +10>>/usr/ftprm.txt I want all these files listed in the ftprm.txt to be ftp in another machine and then rm the files. Anyone can help me... (8 Replies)
Discussion started by: kamaldev
8 Replies

2. Red Hat

Need Script to ZIP/SAVE & then DELETE Log file & DELETE ZIPS older than 12 months

ENVIROMENT Linux: Fedora Core release 1 (Yarrow) iPlanet: iPlanet-WebServer-Enterprise/6.0SP1 Log Path: /usr/iplanet/servers/https-company/logs I have iPlanet log rotation enabled rotating files on a daily basis. The rotated logs are NOT compressed & are taking up too much space. I... (7 Replies)
Discussion started by: zachs
7 Replies

3. UNIX for Dummies Questions & Answers

To delete the oldest files in a file when file count in the folder exceeds 7

Hi All, I need to delete the oldest file in folder when the file count in the folder exceed 6 ( i have a process that puts the source files into this folder ) E.x : Folder : /data/opt/backup 01/01/2012 a.txt 01/02/2012 b.txt ... (1 Reply)
Discussion started by: akshay01987
1 Replies

4. Shell Programming and Scripting

Need unix commands to delete records from one file if the same record present in another file...

Need unix commands to delete records from one file if the same record present in another file... just like join ... if the record present in both files.. delete from first file or delete the particular record and write the unmatched records to new file.. tried with grep and while... (6 Replies)
Discussion started by: msathees
6 Replies

5. Shell Programming and Scripting

Delete a pattern present in file 2 from file 1 if found in file 1.

I have two files File1 ==== 1|2000-00-00|2010-02-02|| 2| 00:00:00|2012-02-24|| 3|2000-00-00|2011-02-02|| File2 ==== 2000-00-00 00:00:00 I want the delete the patterns which are found in file 2 from file 1, Expected output: File1 ==== (5 Replies)
Discussion started by: machomaddy
5 Replies

6. Homework & Coursework Questions

how to delete core file (file created due to apps crashed)

1. The problem statement, all variables and given/known data: When looking for corefiles, include any file with core in its name. (Some UNIX/Linux systems add the PID of the process that created the core to reduce the chances of overwriting an already existing core file that might be needed. The... (6 Replies)
Discussion started by: s3270226
6 Replies

7. Solaris

Before I delete any file in Unix, How can I check no open file handle is pointing to that file?

I know how to check if any file has a unix process using a file by looking at 'lsof <fullpath/filename>' command. I think using lsof is very expensive. Also to make it accurate we need to inlcude fullpath of the file. Is there another command that can tell if a file has a truely active... (12 Replies)
Discussion started by: kchinnam
12 Replies

8. Windows & DOS: Issues & Discussions

PSFTP/PSCP: remotely deleting directory recursively

Hello, I'm looking for a way to use PSFTP or PSCP, executed from a batch file in Windows, to delete an entire folder and its contents. I can run a script using PSFTP which can use rm or rmdir, but the -rf command doesn't work. Any suggestions on another client to use in the same context, or a... (2 Replies)
Discussion started by: ocdcollector
2 Replies

9. Shell Programming and Scripting

Delete block of text in one file based on list in another file

Hi all I currently use the following in shell. #!/bin/sh while read LINE do perl -i -ne "$/ = ''; print if !m'Using archive: ${LINE}'ms;" "datafile" done < "listfile" NOTE the single quote delimiters in the expression. It's highly likely the 'LINE' may very well have characters in it... (3 Replies)
Discussion started by: Festus Hagen
3 Replies

10. Shell Programming and Scripting

pscp.exe trasforms a.sh to 'a.sh '

When I upload from win XP client through ssh with pscp.exe file a.sh, I get on server file with a blank in the name: 'a ' >ls -alF *sh* |cat -vet - -rw-r--r-- 1 az214926 6803 3835 Dec 17 18:43 a.sh $ -rwxr-xr-x 1... (2 Replies)
Discussion started by: zzol
2 Replies
Login or Register to Ask a Question