[Solved] take name of directory and files as variables


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers [Solved] take name of directory and files as variables
# 22  
Old 12-02-2011
I tested with /usr/bin/sh and /usr/bin/ksh but have no bash on this server, sorry...(This one is a HPUX 11.00 )

End of execution with /bin/sh:

Code:
.
.
.

test:
total 0
drwxrwxrwx   3 vbe        bin             96 Nov 23 17:38 samples
Finished!
Copied 119 files 
zra1:/home/vbe $ what copy2   
copy2:
         copy2 v1.0   :Copy all files from current directory to directory given as parameter.
zra1:/home/vbe $


Last edited by vbe; 12-02-2011 at 12:30 PM.. Reason: added output
This User Gave Thanks to vbe For This Post:
# 23  
Old 12-02-2011
thank you vbe for that code, I will work on it and try to get my one working now!

pint of Guinness tastes best in Ireland (even Obama said so Smilie) so you are welcome for one or two here Smilie

---------- Post updated at 01:02 PM ---------- Previous update was at 11:52 AM ----------

ok I did it Smilie it was quite easy now, with your help vbe !

the code works and I think I am happy with it, for now any way Smilie.

Code:
!/bin/bash
dirname=/home/andre/Documents/FRIDAY
files=$(ls)
list=$(ls -m)

if [ -d $dirname ]; then
        echo " destination direcotry $dirname exists... now will copy
files "

elif
 [ ! -d $dirname ]; then
        echo " destination directory doesnt exists...creating
direcotry "
echo " ... "
sleep 3
mkdir $dirname
echo " ... "
echo " direcotry created...processing to copying files "
fi

for i in $files
do
echo " files $i is being copied... "
cp -i $i /home/andre/Documents/FRIDAY
echo " DONE "
done

echo " copied files are "
echo " $list "

thank you
# 24  
Old 12-05-2011
You welcome!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

[Solved] How to find particular files ina directory?

Hi, I am trying to write a script to find some files in a directory Example: if i have files like 2014-02-01_aaaa.txt 2014-02-01_bbbb.txt 2014-02-01_cccc.txt 2014-02-01_dddd.txt and some other files how can i just check to see if there four files exits or not i tried some thing like this... (5 Replies)
Discussion started by: vikatakavi
5 Replies

2. Shell Programming and Scripting

[SOLVED] nawk FS using pipe read variables from file

I have a file data_1.out which contains: 1|abc mail|mail subject|mail body 2|def mail|mail subject|def mail body I am trying to read the variables from data_1.out and use them to print to 2 different files based on the id (first_column) The problem is I am not able to read the file... (8 Replies)
Discussion started by: sol_nov
8 Replies

3. UNIX for Dummies Questions & Answers

[Solved] Writing a loop to changing the names of files in a directory

Hi, I would like to write a loop to change the names of files in a directory. The files are called data1.txt through data1000.txt. I'd like to change their names to a1.txt through a1000.txt. How do I go about doing that? Thanks! (2 Replies)
Discussion started by: evelibertine
2 Replies

4. Shell Programming and Scripting

[solved] Question for using variables outside a while loop

I want to get newvar outside the while any ideas? while read myline; do var=${myline} newvar1=$(let "$var") done echo $newvar1 I found it its ok now Thank you! (0 Replies)
Discussion started by: sanantonio7777
0 Replies

5. Shell Programming and Scripting

[Solved] Working with date (add minutes using variables)

Dear all, today I'm scratching my head with a simple (I believe) issue. Working with date is quite simple, so if I Need to add some seconds to current time, I'll use: date --date='+30 seconds' +"%Y-%m-%d %H:%M:%S"But, how to pass the value to add from a variable? I tried the following without... (2 Replies)
Discussion started by: Lord Spectre
2 Replies

6. Shell Programming and Scripting

Moving files from one directory to another based on 2 date variables

Hi All, I am currently coding for a requirement(LINUX OS) where I am supposed to move a file (Lets Call it Employee.txt) from Directory A to Directory B based on 2 date fields as below, Date_Current = 20120620 Date_Previous = 20120610 Source Directory : /iis_data/source Target... (11 Replies)
Discussion started by: dsfreddie
11 Replies

7. Shell Programming and Scripting

[Solved] Bash test 2 variables to see if ones greater by n

Experts, I have a bash shell script that generates 2 variables that have the current minute and a minute from a log file. Can someone please show me the best way to test if the minutes stray by 5. So basically if: This is ok: Last Fitting Min ============= 02 Current Minute =============... (2 Replies)
Discussion started by: jaysunn
2 Replies

8. Shell Programming and Scripting

[Solved] Look for strings and use variables

Hello guys, First of all, thanks for taking the time to read my post. So, here I have a file from my honeypot which record IP addresses and web pages visited. I would like to manipulate it in order to create Snort signatures and ACLs. But I am having troubles to extract the src IP address and... (6 Replies)
Discussion started by: Benou
6 Replies

9. UNIX for Dummies Questions & Answers

[SOLVED] Delete files and folders under given directory

I have a requirement to delete the files and folders under a given directory. my directory structure is like this.. Data | A(Directory) |_PDF(Directory)----pdf files |_XML()Directory --xml files |--files | B(Directory) |_PDF(Directory)----pdf files |_XML()Directory --xml files ... (1 Reply)
Discussion started by: ramse8pc
1 Replies

10. Shell Programming and Scripting

[solved] merging two files and writing to another file- solved

i have two files as file1: 1 2 3 file2: a b c and the output should be: file3: 1~a 2~b 3~c (1 Reply)
Discussion started by: mlpathir
1 Replies
Login or Register to Ask a Question