create paths


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers create paths
# 1  
Old 08-06-2007
MySQL create paths

Hello!

If I have file like that:

AAA
->bbb
->ccc
->ddd
->eee

how to create full paths like:

AAA->bbb
AAA->ccc->ddd
AAA->ccc->eee

?
(I'm sorry for mistakes - english is not my native language) Smilie
# 2  
Old 08-06-2007
Do you want to list files in a directory tree with a full path name?
Here is an example for a directory called "dir"
Code:
prefix="/dir"
find $prefix -type f |\
while read file 
do
       printf "%s/%s\n" "$prefix" "$file"
done > listfile

# 3  
Old 08-06-2007
Thank you, but it is not what I wanted...
It is all about text files - I have one, that looks like:

Sistēma
->Pieslēgties
->Datu apmaiņa
-> Kases aparāti
-> Fiskālo printeru serviss
-> Grāmatojumu imports
-> Datu imports
-> Pavadzīmju eksports
-> BarMan imports
-> Datu ārējais eksports
-> Drošības kopija

and I need:

Sistēma->Pieslēgties
Sistēma->Datu apmaiņa-> Kases aparāti
Sistēma->Datu apmaiņa-> Fiskālo printeru serviss

in other text file....
is it possible?
Thanks anyway Smilie
# 4  
Old 08-06-2007
Input file
Code:
Sistema
->Pieslegties
->Datu apmaina
-> Kases aparati
-> Fiskalo printeru serviss
-> Gramatojumu imports
-> Datu imports
-> Pavadzimju eksports
-> BarMan imports
-> Datu arejais eksports
-> Drošibas kopija
AddonForTest
->Datu apmaina
-> Kases aparati
-> Fiskalo printeru serviss
-> Gramatojumu imports
-> Datu imports
-> Pavadzimju eksports
-> BarMan imports

Code:
awk '{
     if(index($0, "->")>0) { 
         print base $0}
     else{
         base=$0
     }    
     }' filename

output:
Code:
     
Sistema->Pieslegties
Sistema->Datu apmaina
Sistema-> Kases aparati
Sistema-> Fiskalo printeru serviss
Sistema-> Gramatojumu imports
Sistema-> Datu imports
Sistema-> Pavadzimju eksports
Sistema-> BarMan imports
Sistema-> Datu arejais eksports
Sistema-> Drošibas kopija
AddonForTest->Datu apmaina
AddonForTest-> Kases aparati
AddonForTest-> Fiskalo printeru serviss
AddonForTest-> Gramatojumu imports
AddonForTest-> Datu imports
AddonForTest-> Pavadzimju eksports
AddonForTest-> BarMan imports

# 5  
Old 08-07-2007
Thank you - it was very useful! Smilie So, now I have one level, but there was 2 of them... Is it possible to use regex in index function? For example, how to find Aaaa->Bbbbb and insert it before 3rd level?

Ideas like:
awk 'if (index ($0, "[A-Za-z+->A-Za-z+]")>0) {print base $0} else {base = $0}} ' filename
does not work...

or maybe it is not necesarry to use regexes...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Problem understanding Paths

If I don't explain my issue well enough, I apologize ahead of time, extreme newbie here to scripting. I'm currently learning scripting from books and have moved on to the text Wicked Cool Shell Scripts by Dave Taylor, but there are still basic concepts that I'm having trouble understanding. ... (10 Replies)
Discussion started by: Chasman78
10 Replies

2. Programming

Can't find paths.h

I wasn't sure which forum to post this in. I am trying to compile logsurfer. After I run configure and the make, I get a complaint that paths.h is not found. I see three places where there is a paths.h: /usr/include/pgsql/server/optimizer/paths.h... (3 Replies)
Discussion started by: brownwrap
3 Replies

3. What is on Your Mind?

Possible Career Paths

I've read through a couple of forum posts on Career issues but wanted to get some feedback that may be more personalized and whatnot. I am brand new to the world of UNIX and Linux and while I am finding the learning curve rather steep, I find it highly rewarding and am overall enjoying the... (2 Replies)
Discussion started by: huntreilly25
2 Replies

4. UNIX for Dummies Questions & Answers

Absolute and Relative Paths?

Can someone cofirm that I have got the paths correct here? :confused: $PATH_TO_TMP_DIR='/tmp'; #$PATH_TO_TMP_DIR='home/tmp'; $PATH_TO_YOUR_IMG_DIR = '/temp_images'; #$PATH_TO_YOUR_IMG_DIR = 'home/public_html/Midwich/temp_images'; Thanks (1 Reply)
Discussion started by: stubie
1 Replies

5. AIX

Storage paths

Have connected a non-IBM storage device to AIX host via fibre channel. If the storage is rebooted or a raid controller fails over whilst connected to the host, the paths that drop do not come back online when the ports become active again. I have tried enabling dynamic tracking and delayed_fail... (3 Replies)
Discussion started by: Storeman
3 Replies

6. Filesystems, Disks and Memory

Extracting certain /paths/* using tar

forgive my ignorance. I did a search of this sub-forum for "tar -xp" and variations on the same w\out success, so here goes... Scenario: filename.tar file. Desired Task: I want to be able to extract only files from the user's public_html folder (and all those under it as an option) from... (4 Replies)
Discussion started by: Habitual
4 Replies

7. UNIX for Advanced & Expert Users

Spoofing paths.

There is a program that I am trying to run on a shell account. It depends on another program, which I have also copied to the shell account. Both are in my home directory, yet the first program has a different path hardcoded into it, which I cannot use because of permissions problems. How can I... (3 Replies)
Discussion started by: fahadsadah
3 Replies

8. UNIX for Dummies Questions & Answers

How to get listing with complete paths

I am doing ls -ltrR to get long listing of files and directories, recursively. In place of files, I want to see the file names with complete path The way it looks now is ls -ltrR . .: total 866 -rwxrwxr-x 1 user ofr 945 Nov 30 2004 findwordinfiles drwxrwxr-x 3 user ... (1 Reply)
Discussion started by: sunilav
1 Replies

9. UNIX for Dummies Questions & Answers

Paths update

After unpacking a solaris 2.6 package with success, I need to update the paths so I can "see"the new software. The manual shows me what the path should be but I don't have a clue on how to change that. Asking a stupid question makes me look stupid 30 sec. Not asking makes me stupid the rest of my... (5 Replies)
Discussion started by: phpote
5 Replies

10. UNIX for Dummies Questions & Answers

paths

Hi there! People, i'm a new unix user, and i'm having some problems... I'm updating some scripts (korn shell) in different servers. I use telnet to access these servers and emacs to write the scripts. One of them is an HP, and there´s no problem. But the other one is an AIX, and when i call... (1 Reply)
Discussion started by: caiohn
1 Replies
Login or Register to Ask a Question