Sponsored Content
Top Forums Shell Programming and Scripting Sorting by Full directory path Post 302401266 by javidraaj on Friday 5th of March 2010 10:20:03 AM
Old 03-05-2010
Sorting by Full directory path

I have a text file with full list of files with their full path. I wanted to sort it by directory then files then subdirectory by alphabetically. When I used the sort command it doesn't give like what I want. Could somebody help me on this.
Here is the ex:
This is what I'm getting
Code:
parent/childDir
parent/childDir/A_subdir
parent/childDir/A_subdir/A_File.txt
parent/childDir/A_subdir/AF_File.txt
parent/childDir/A_subdir/AF2_File.txt
parent/childDir/A_subdir/B_File.txt
parent/childDir/A_subdir/E_File.txt
parent/childDir/A_subdir/L_File.txt
parent/childDir/A_subdir/P_File.txt
parent/childDir/A_subdir/T_File.txt
parent/childDir/A_subdir/a_File.txt
parent/childDir/A_subdir/a_v_File.txt
parent/childDir/A_subdir/al_File.txt
parent/childDir/A_subdir/au_File.txt
parent/childDir/A_subdir/B_subdir
parent/childDir/A_subdir/B_subdir/M_File
parent/childDir/A_subdir/B_subdir/a_File.txt
parent/childDir/A_subdir/B_subdir/c_File.txt
parent/childDir/A_subdir/B_subdir/v_File.txt
parent/childDir/A_subdir/c_File.txt
parent/childDir/A_subdir/d_File.txt
parent/childDir/A_subdir/f_File.txt

but I wanted like this

Code:
parent/childDir
parent/childDir/A_subdir
parent/childDir/A_subdir/A_File.txt
parent/childDir/A_subdir/ab_File.txt
parent/childDir/A_subdir/AF_File.txt
parent/childDir/A_subdir/AF2_File.txt
parent/childDir/A_subdir/al_File.txt
parent/childDir/A_subdir/au_File.txt
parent/childDir/A_subdir/a_v_File.txt
parent/childDir/A_subdir/B_File.txt
parent/childDir/A_subdir/c_File.txt
parent/childDir/A_subdir/d_File.txt
parent/childDir/A_subdir/E_File.txt
parent/childDir/A_subdir/f_File.txt
parent/childDir/A_subdir/L_File.txt
parent/childDir/A_subdir/P_File.txt
parent/childDir/A_subdir/T_File.txt
parent/childDir/A_subdir/B_subdir
parent/childDir/A_subdir/B_subdir/a_File.txt
parent/childDir/A_subdir/B_subdir/c_File.txt
parent/childDir/A_subdir/B_subdir/M_File
parent/childDir/A_subdir/B_subdir/v_File.txt

Thanks

Last edited by radoulov; 03-05-2010 at 11:43 AM.. Reason: Please use code tags!
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

getting full path from relative path

given a relative path, how do i convert it into a full one. i.e. if i am in /home/polypus and i am given foo/bar then to get a full path i can just concatinate it with pwd, but what if i am given "../mama" how do i programmatically convert: /home/polypus and ../mama into ... (4 Replies)
Discussion started by: polypus
4 Replies

2. Shell Programming and Scripting

Retrieve directory path from full file path through sh

Hi, I have a file abcd.txt which has contents in the form of full path file names i.e. $home> vi abcd.txt /a/b/c/r1.txt /q/w/e/r2.txt /z/x/c/r3.txt Now I want to retrieve only the directory path name for each row i.e /a/b/c/ /q/w/e/ How to get the same through shell script?... (7 Replies)
Discussion started by: royzlife
7 Replies

3. Shell Programming and Scripting

How to extract strings from full path when full path is not fixed

/Path/snowbird9/nrfCompMgrRave1230100920.log.gz:09/20/2010 06:14:51 ERROR Error Message. /Path/snowbird6/nrfCompMgrRave1220100920.log.gz:09/20/2010 06:14:51 ERROR Error Message. /Path/snowbird14/nrfCompMgrRave920100920.log.gz:09/20/2010 06:14:51 ERROR Error Message.... (0 Replies)
Discussion started by: Shirisha
0 Replies

4. UNIX for Dummies Questions & Answers

Present Working Directory (not the full path)

Hi, Is there a command that tells you right away the current working directory? I know the command "pwd", but that one gives the full path. if pwd gives me: /a/b/c/d/ggg/HERE I want something that will give me: HERE Thanks, Gaurab (13 Replies)
Discussion started by: gaurab
13 Replies

5. Shell Programming and Scripting

How do I get an ls -l to not show the full directory path?

Hey I'm new to the forums here, and I'm seeking help for this script that I'm writing. When I do ls -l of a directory it shows the full pathname for files in it. For example, if the directory is /internet/post/forum/ and the file is topic, it currently shows internet/post/forum/topic. What's the... (3 Replies)
Discussion started by: unity04
3 Replies

6. Shell Programming and Scripting

$0 doesn't have full directory path

I'm running AIX unix korn shell. If I echo $0, I only get the filename, it does not have the directory name also. So when I do: `dirname $0` it returns a . (meaning current directory). How get $0 to return the full path/filename? Do I need something in my .profile? Thank you. (8 Replies)
Discussion started by: sboxtops
8 Replies

7. Shell Programming and Scripting

How to list all Subdirectories and files with its full path in a parent directory?

How to list all Subdirectories and files with its full path in a parent directory? (1 Reply)
Discussion started by: johnveslin
1 Replies

8. UNIX for Dummies Questions & Answers

Extract directory name from the full directory path in UNIX using shell scripting

My input is as below : /splunk/scrubbed/rebate/IFIND.REBTE.WROC.txt /splunk/scrubbed/rebate/IFIND.REBTE.WROC.txt /splunk/scrubbed/loyal/IFIND.HELLO.WROC.txt /splunk/scrubbed/triumph/ifind.triumph.txt From the above input I want to extract the file names only . Basically I want to... (5 Replies)
Discussion started by: IshuGupta
5 Replies

9. UNIX for Beginners Questions & Answers

Convert Relative path to Absolute path, without changing directory to the file location.

Hello, I am creating a file with all the source folders included in my git branch, when i grep for the used source, i found source included as relative path instead of absolute path, how can convert relative path to absolute path without changing directory to that folder and using readlink -f ? ... (4 Replies)
Discussion started by: Sekhar419
4 Replies

10. UNIX for Beginners Questions & Answers

What is the difference ../directory path and ./directory path in ksh?

What is the difference ../directory path and ./directory path in ksh? (1 Reply)
Discussion started by: TestKing
1 Replies
XReparentWindow(3X11)													     XReparentWindow(3X11)

NAME
XReparentWindow - reparent windows SYNOPSIS
XReparentWindow(display, w, parent, x, y) Display *display; Window w; Window parent; int x, y; ARGUMENTS
Specifies the connection to the X server. Specifies the parent window. Specifies the window. Specify the x and y coordinates of the position in the new parent window. DESCRIPTION
If the specified window is mapped, XReparentWindow automatically performs an UnmapWindow request on it, removes it from its current posi- tion in the hierarchy, and inserts it as the child of the specified parent. The window is placed in the stacking order on top with respect to sibling windows. After reparenting the specified window, XReparentWindow causes the X server to generate a ReparentNotify event. The override_redirect mem- ber returned in this event is set to the window's corresponding attribute. Window manager clients usually should ignore this window if this member is set to True. Finally, if the specified window was originally mapped, the X server automatically performs a MapWindow request on it. The X server performs normal exposure processing on formerly obscured windows. The X server might not generate Expose events for regions from the initial UnmapWindow request that are immediately obscured by the final MapWindow request. A BadMatch error results if: The new parent window is not on the same screen as the old parent window. The new parent window is the specified window or an inferior of the specified window. The new parent is InputOnly, and the window is not. The specified window has a ParentRelative background, and the new parent window is not the same depth as the specified window. XReparentWindow can generate BadMatch and BadWindow errors. DIAGNOSTICS
A value for a Window argument does not name a defined Window. SEE ALSO
XChangeSaveSet(3X11) Xlib -- C Language X Interface XReparentWindow(3X11)
All times are GMT -4. The time now is 06:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy