Sponsored Content
Top Forums Shell Programming and Scripting Script to tar/rsync/rm multiple folder names Post 302970965 by bakunin on Thursday 14th of April 2016 07:00:03 AM
Old 04-14-2016
Quote:
Originally Posted by robertkwild
i understand why you put the executable paths in but what is this line for -
Code:
export PATH

It means: if this shell happens to open another shell (for instance by calling another script) the current value of the exported variable will be known there. Right now there is no such other shell called so this is not necessary. But in case you do call another shell at some time in the future it will be good to be there so you can't forget to add it. Again: maintainability at work.


Quote:
Originally Posted by robertkwild
also when i do this command i get a text file of the project folder name and size of each folder but how do i make it do file counts of each directory?

Code:
du -h /to_be_archived/* >> /archive

The same way you cycle through the subdirectories of "/to_be_archived": using the for-loop for tarring, rsyncing and everything else. Like this (i put a header line in for every directory to make it easier to read - it serves no other purpose so feel free to modify the format or drop it alltogether if you don't like it):

Code:
cd /to_be_archived/
for DIR in * ; do
     fSaveDir="${DIR##*/}"

     echo "------------- files from ${fSaveDir}" >> /archive
     du -h /to_be_archived/"${fSaveDir}"/* >> /archive

     tar [....rest of your code....]
done

I hope this helps.

bakunin

Last edited by bakunin; 04-14-2016 at 08:18 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Copying multiple folders to local machine (don't know folder names)

Hi. I'm trying to copy multiple folders from the remote machine to the local machine. I wrote a batch file to run an ftp window. The problem I am having is that the only command to copy files is mget *, and this copies only files, not folders. For example, ftp ts555 cd ts555/test ' test... (5 Replies)
Discussion started by: leenyburger
5 Replies

2. Shell Programming and Scripting

lvm/tar/rsync backup script feedback/criticism

I have written a shell script to perform backups using tar, rsync and optionally utilise lvm snapshots. The script is not finished but is in a working state and comments/descriptions are poor. I would greatly appreciate any criticism and suggestions of the script to help improve my own learning... (0 Replies)
Discussion started by: jelloir
0 Replies

3. Shell Programming and Scripting

Script to move files with similar names to folder

I have in directory /media/AUDIO/WAVE many .mp3 files with names like: my filename_01of02.mp3 my filename_02of02.mp3 Your File_01of06.mp3 Your File_02of06.mp3 etc.... In the same directory, /media/AUDIO/WAVE, I have many folders with names like 9780743579490 9780743579491 etc.. Inside... (7 Replies)
Discussion started by: glev2005
7 Replies

4. Shell Programming and Scripting

editing names of files in multiple folder

I have 1000's of directories which is named as numbers. Each directory contains multiple files. Each of these directories have a file named "att". I need to rename all the att files by adding the directory name followed by "_" then att for each of the directories. Directories 120 att... (2 Replies)
Discussion started by: Lucky Ali
2 Replies

5. Shell Programming and Scripting

tar command to explore multiple layers of tar and tar.gz files

Hi all, I have a tar file and inside that tar file is a folder with additional tar.gz files. What I want to do is look inside the first tar file and then find the second tar file I'm looking for, look inside that tar.gz file to find a certain directory. I'm encountering issues by trying to... (1 Reply)
Discussion started by: bashnewbee
1 Replies

6. UNIX for Dummies Questions & Answers

Do I need to extract the entire tar file to confirm the tar folder is fine?

I would like to confirm my file.tar is been tar-ed correctly before I remove them. But I have very limited disc space to untar it. Can I just do the listing instead of actual extract it? Can I say confirm folder integrity if the listing is sucessful without problem? tar tvf file1.tar ... (1 Reply)
Discussion started by: vivien_chu
1 Replies

7. Shell Programming and Scripting

Script to move one folder to multiple folder...

Hi All, I have to requirement to write a shell script to move file from one folder (A) to another five folder (B,C,D,E,F) and destination folder should be blank. In not blank just skip. This script will run as a scheduler every 2 minutes. It will check number of files in folder A and move 1 to... (9 Replies)
Discussion started by: peekuabc
9 Replies

8. Shell Programming and Scripting

Bash script for printing folder names and their sizes

Good day, everyone! I'm very new to bash scripting. Our teacher gave us a task to create a script that basically does the same job the 'du' command does, with the difference that 'du' command gives an output in the form of <size> <folder name>and what we need is <folder name> <size>As for... (1 Reply)
Discussion started by: UncleIS
1 Replies

9. Homework & Coursework Questions

Bash script for printing folder names and their sizes

1. The problem statement, all variables and given/known data: The task is to create a script that would reproduce the output of 'du' command, but in a different way: what 'du' does is: <size> <folder name>and what is needed is <folder name> <size>We need to show only 10 folders which are the... (3 Replies)
Discussion started by: UncleIS
3 Replies

10. Shell Programming and Scripting

Checking Multiple File existance in a UNIX folder(Note: File names are all different)

HI Guys, I have some 8 files with different name and extensions. I need to check if they are present in a specific folder or not and also want that script to show me which all are not present. I can write if condition for each file but from a developer perspective , i feel that is not a good... (3 Replies)
Discussion started by: shankarpanda003
3 Replies
Locale::Script(3pm)					 Perl Programmers Reference Guide				       Locale::Script(3pm)

NAME
Locale::Script - ISO codes for script identification (ISO 15924) SYNOPSIS
use Locale::Script; use Locale::Constants; $script = code2script('ph'); # 'Phoenician' $code = script2code('Tibetan'); # 'bo' $code3 = script2code('Tibetan', LOCALE_CODE_ALPHA_3); # 'bod' $codeN = script2code('Tibetan', LOCALE_CODE_ALPHA_NUMERIC); # 330 @codes = all_script_codes(); @scripts = all_script_names(); DESCRIPTION
The "Locale::Script" module provides access to the ISO codes for identifying scripts, as defined in ISO 15924. For example, Egyptian hieroglyphs are denoted by the two-letter code 'eg', the three-letter code 'egy', and the numeric code 050. You can either access the codes via the conversion routines (described below), or with the two functions which return lists of all script codes or all script names. There are three different code sets you can use for identifying scripts: alpha-2 Two letter codes, such as 'bo' for Tibetan. This code set is identified with the symbol "LOCALE_CODE_ALPHA_2". alpha-3 Three letter codes, such as 'ell' for Greek. This code set is identified with the symbol "LOCALE_CODE_ALPHA_3". numeric Numeric codes, such as 410 for Hiragana. This code set is identified with the symbol "LOCALE_CODE_NUMERIC". All of the routines take an optional additional argument which specifies the code set to use. If not specified, it defaults to the two- letter codes. This is partly for backwards compatibility (previous versions of Locale modules only supported the alpha-2 codes), and partly because they are the most widely used codes. The alpha-2 and alpha-3 codes are not case-dependent, so you can use 'BO', 'Bo', 'bO' or 'bo' for Tibetan. When a code is returned by one of the functions in this module, it will always be lower-case. SPECIAL CODES The standard defines various special codes. o The standard reserves codes in the ranges qa - qt, qaa - qat, and 900 - 919, for private use. o zx, zxx, and 997, are the codes for unwritten languages. o zy, zyy, and 998, are the codes for an undetermined script. o zz, zzz, and 999, are the codes for an uncoded script. The private codes are not recognised by Locale::Script, but the others are. CONVERSION ROUTINES
There are three conversion routines: "code2script()", "script2code()", and "script_code2code()". code2script( CODE, [ CODESET ] ) This function takes a script code and returns a string which contains the name of the script identified. If the code is not a valid script code, as defined by ISO 15924, then "undef" will be returned: $script = code2script('cy'); # Cyrillic script2code( STRING, [ CODESET ] ) This function takes a script name and returns the corresponding script code, if such exists. If the argument could not be identified as a script name, then "undef" will be returned: $code = script2code('Gothic', LOCALE_CODE_ALPHA_3); # $code will now be 'gth' The case of the script name is not important. See the section "KNOWN BUGS AND LIMITATIONS" below. script_code2code( CODE, CODESET, CODESET ) This function takes a script code from one code set, and returns the corresponding code from another code set. $alpha2 = script_code2code('jwi', LOCALE_CODE_ALPHA_3 => LOCALE_CODE_ALPHA_2); # $alpha2 will now be 'jw' (Javanese) If the code passed is not a valid script code in the first code set, or if there isn't a code for the corresponding script in the sec- ond code set, then "undef" will be returned. QUERY ROUTINES
There are two function which can be used to obtain a list of all codes, or all script names: "all_script_codes ( [ CODESET ] )" Returns a list of all two-letter script codes. The codes are guaranteed to be all lower-case, and not in any particular order. "all_script_names ( [ CODESET ] )" Returns a list of all script names for which there is a corresponding script code in the specified code set. The names are capi- talised, and not returned in any particular order. EXAMPLES
The following example illustrates use of the "code2script()" function. The user is prompted for a script code, and then told the corre- sponding script name: $| = 1; # turn off buffering print "Enter script code: "; chop($code = <STDIN>); $script = code2script($code, LOCALE_CODE_ALPHA_2); if (defined $script) { print "$code = $script "; } else { print "'$code' is not a valid script code! "; } KNOWN BUGS AND LIMITATIONS
o When using "script2code()", the script name must currently appear exactly as it does in the source of the module. For example, script2code('Egyptian hieroglyphs') will return eg, as expected. But the following will all return "undef": script2code('hieroglyphs') script2code('Egyptian Hieroglypics') If there's need for it, a future version could have variants for script names. o In the current implementation, all data is read in when the module is loaded, and then held in memory. A lazy implementation would be more memory friendly. SEE ALSO
Locale::Language ISO two letter codes for identification of language (ISO 639). Locale::Currency ISO three letter codes for identification of currencies and funds (ISO 4217). Locale::Country ISO three letter codes for identification of countries (ISO 3166) ISO 15924 The ISO standard which defines these codes. http://www.evertype.com/standards/iso15924/ Home page for ISO 15924. AUTHOR
Neil Bowers <neil@bowers.com> COPYRIGHT
Copyright (c) 2002 Neil Bowers. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.8.0 2002-06-01 Locale::Script(3pm)
All times are GMT -4. The time now is 12:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy