Sponsored Content
Top Forums Shell Programming and Scripting Comparing folders - autocopy script Post 302971153 by Don Cragun on Saturday 16th of April 2016 01:47:16 PM
Old 04-16-2016
Quote:
Originally Posted by Eomer
Hey, thank you very much!

So It would be:

Code:
if ! cmp "$FILE" "$TARGET/$TIMESTAMP/$DATE" > /dev/null 2>&1


logger -t sd-autocopy "copying of $FILE  failed"
    fi

Do I have to include the part \n' "$FILE" in the logger part?

Could you please check is this is right?


And how would you do the part with the log file?


Moderator's Comments:
Mod Comment Please use code tags as require red by forum rules!
You don't need to use a printf style format string operand with logger, but you do need a then in your if statement.
Code:
    if ! tmp "$FILE" "$TARGET/$TIMESTAMP/$DATE" > /dev/null 2>&1; then
	logger -t sd-autocopy "copying of $FILE failed"
    fi

I think it would also be wise to keep track of whether or not any copies failed and include an indication of success or failure in the notify-send at the end of the background job part of your script.
This User Gave Thanks to Don Cragun For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

script to loop around folders

I have a folder called {homedata} Within this folder there are 12 subfolders 200601.......200612 Within each subfolder there are 8 sets of files Each filename commences with A B C D E F G or H, so {filename}* can be used. I am trying to write a script which will from the top level go... (2 Replies)
Discussion started by: grinder182533
2 Replies

2. Shell Programming and Scripting

listing folders and using in script

im a bit new to this and have been playing quite a bit and cant figure it out :( I have made a basic script: cd /folder/software1/bin/; echo "software1," >> /in/local/var/trace/davescripts/software.txt "\c"; ls -tm >> /in/local/var/trace/davescripts/software.txt; and this basically... (1 Reply)
Discussion started by: truCido
1 Replies

3. Shell Programming and Scripting

Comparing Two Binary Folders

I am a beginner to all of this but undertand the basic principles. I am currently working on a large task and struggling with a the final part. I have two files, folder 1 contains a list of around 20 files in binary (possibly treated as arrays?) folder 2 contains several files and sub... (2 Replies)
Discussion started by: puzzler
2 Replies

4. Shell Programming and Scripting

Apply script to several archives in several Folders.

Hello. I'm here again. I have a script in python and bash, and I need execute this script over all files in all folders. Example: Folder: CMDB Subfolders: router1 router2 switch1 switch2 and in this folders exists a file called... (3 Replies)
Discussion started by: bobbasystem
3 Replies

5. Ubuntu

Moving folders with script

Hi All, I am new to Forums, as i am struggling for one script i am launched here. I need to move more than 60,000+ folders in 1,00,000 folders to another server. I have the list of folders which should be moved. can anybody help me in sharing with the script for the above requirement. ... (4 Replies)
Discussion started by: ghimakiran
4 Replies

6. UNIX for Dummies Questions & Answers

Searching for folders/parent folders not files.

Hello again, A little while back I got help with creating a command to search all directories and sub directories for files from daystart of day x. I'm wondering if there is a command that I've overlooked that may be able to search for / write folder names to an output file which ideally... (2 Replies)
Discussion started by: Aussiemick
2 Replies

7. UNIX for Dummies Questions & Answers

script to create folders

hi again, having an issue with the code here because it doesnt work :D can someone point what and how to change, please. #!/bin/bash #create directory mylabs, inside create 6 directories named by user. DIR1="$1" DIR2="$2" if ; then echo -n " there is a folder named mylabs, what... (1 Reply)
Discussion started by: me.
1 Replies

8. Shell Programming and Scripting

Why is my bash script merging folders?

I hope this thread is in the right forum... This is for a .deb package that will be installed on Cydia. Pre'note': I am installing a custom 'hosts' file and AdSheet.app directory. My problem is during a reinstall/upgrade. Cydia will run the entire installation process again, which means it... (1 Reply)
Discussion started by: thazsar
1 Replies

9. Shell Programming and Scripting

Comparing two folders

Hi, Can you tell me how to compare two directories and write the differing files to some other folder? (5 Replies)
Discussion started by: arijitsaha
5 Replies

10. Shell Programming and Scripting

Help with Deleting Folders Script

Hi all new to the forums. Very beginner at shell scripting. What I'm trying to do is this: Is the directory empty prior to removal of it? If not, inform the user that the directory is not empty and if the user wants to remove it remove or move the files in it first. But I'm stuck.. It checks... (3 Replies)
Discussion started by: rduckett1456
3 Replies
All times are GMT -4. The time now is 02:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy