Sponsored Content
Full Discussion: How to remove indents
Top Forums Shell Programming and Scripting How to remove indents Post 302543274 by pinpe on Saturday 30th of July 2011 12:53:21 PM
Old 07-30-2011
How to remove indents

Hi Guys,

Need some help on removing indents from a file. See below desired output.


INPUT FILE:
Code:
        7860080
        7860081
        7860082
        7860083
        7860084
        7860085
        7860086
        7860087
        7859457
7860011
7908350
7860088
7860090
7860091
7860092



DESIRED OUTPUT FILE:
Code:
7860080
7860081
7860082
7860083
7860084
7860085
7860086
7860087
7859457
7860011
7908350
7860088
7860090
7860091
7860092


Thanks in advance.


Br,
pinpe
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

smitty, remove user, remove directory as well..

hi, i am on aix. i used smitty to remove a user.. but then found that its directory still exists.... so i have to remove the directory manually... am i doing it the right way? (2 Replies)
Discussion started by: yls177
2 Replies

2. Shell Programming and Scripting

remove me!

Clicked on post twice, sorry: https://www.unix.com/shell-programming-scripting/147954-grep-fixed-string-regex.html#post302469753 (1 Reply)
Discussion started by: teresaejunior
1 Replies

3. Shell Programming and Scripting

remove with [0-9]

My file has varied width references: width=10% style=width:5% width:1506% width:99.58% so I'm trying clear all the width calls with one procedure: 's/width= *%//' and 's/width=*%//'but neither is working. (6 Replies)
Discussion started by: dba_frog
6 Replies

4. Shell Programming and Scripting

How to remove ^I ?

not sure what is this but any can help me delete this ^I cat -A file.txt CLAS^I^I|890^I|7,10,12,341,305,308,29,54^M$ LCLS^I^I|891^I|7,10,12,341,305,308,29,54^M$ MURB^I^I|892^I|7,10,12,341,305,308,29,54^M$ LATI^I^I|893^I|7,10,12,341,305,308,29,54^M$ i want to remove the ^I^I... (2 Replies)
Discussion started by: posner
2 Replies

5. Shell Programming and Scripting

remove brackets and put it in a column and remove repeated entry

Hi all, I want to remove the remove bracket sign ( ) and put in the separate column I also want to remove the repeated entry like in first row in below input (PA156) is repeated ESR1 (PA156) leflunomide (PA450192) (PA156) leflunomide (PA450192) CHST3 (PA26503) docetaxel... (2 Replies)
Discussion started by: manigrover
2 Replies

6. Red Hat

Remove

Hi guys, I need to write a script so that when i execute the "rm" command, the file mentioned need to be copied to other folder and then be deleted. this should be done in back ground. can you please help me out?? (1 Reply)
Discussion started by: rajeshb6
1 Replies

7. AIX

Need to remove (LP)PP

Had increased FS system size (sample_lv) on particular disks hdisk189 hdisk190 in a shared FS but unfortunately given addnl size occupies the space on other disks hdisk78 hdisk40 too In case, need to remove the addnl lv size occupied on hdisk78 hdisk40. How to achieve it. Pls advice. ... (3 Replies)
Discussion started by: ksgnathan
3 Replies

8. Post Here to Contact Site Administrators and Moderators

Please remove this post/remove information from it

In this thread: /shell-programming-and-scripting/255687-organizing-text-file-capital-names-capital-word-capital-word.html (sorry i cant use links) that is not an example, those are real students names with real student login id's for the college i am attending and i am on that list. Please... (3 Replies)
Discussion started by: throwawayacc
3 Replies

9. UNIX for Beginners Questions & Answers

How to remove /*...*/ ?

Sample code from apple's xnu code: struct radix_node { struct radix_mask *rn_mklist; /* list of masks contained in subtree */ struct radix_node *rn_parent; /* parent */ short rn_bit; /* bit offset; -1-index(netmask) */ char rn_bmask; /* node: mask for bit test*/ u_char rn_flags; /*... (5 Replies)
Discussion started by: cmdcmd
5 Replies

10. UNIX for Beginners Questions & Answers

Bash to remove find and remove specific extension

The bash below executes and does find all the .bam files in each R_2019 folder. However set -x shows that the .bam extension only gets removed from one .bam file in each folder (appears to be the last in each). Why is it not removing the extension from each (this is $SAMPLE)? Thank you :). set... (4 Replies)
Discussion started by: cmccabe
4 Replies
Prima::IntUtils(3)					User Contributed Perl Documentation					Prima::IntUtils(3)

NAME
Prima::IntUtils - internal functions DESCRIPTION
The module provides packages, containing common functionality for some standard classes. The packages are designed as a code containers, not as widget classes, and are to be used as secondary ascendants in the widget inheritance declaration. Prima::MouseScroller Implements routines for emulation of auto repeating mouse events. A code inside "MouseMove" callback can be implemented by the following scheme: if ( mouse_pointer_inside_the_scrollable_area) { $self-> scroll_timer_stop; } else { $self-> scroll_timer_start unless $self-> scroll_timer_active; return unless $self-> scroll_timer_semaphore; $self-> scroll_timer_semaphore( 0); } The class uses a semaphore "{mouseTransaction}", which should be set to non-zero if a widget is in mouse capture state, and set to zero or "undef" otherwise. The class starts an internal timer, which sets a semaphore and calls "MouseMove" notification when triggered. The timer is assigned the timeouts, returned by "Prima::Application::get_scroll_rate" ( see "get_scroll_rate" in Prima::Application ). Methods scroll_timer_active Returns a boolean value indicating if the internal timer is started. scroll_timer_semaphore [ VALUE ] A semaphore, set to 1 when the internal timer was triggered. It is advisable to check the semaphore state to discern a timer-generated event from the real mouse movement. If VALUE is specified, it is assigned to the semaphore. scroll_timer_start Starts the internal timer. scroll_timer_stop Stops the internal timer. Prima::IntIndents Provides the common functionality for the widgets that delegate part of their surface to the border elements. A list box can be of an example, where its scroll bars and 3-d borders are such elements. Properties indents ARRAY Contains four integers, specifying the breadth of decoration elements for each side. The first integer is width of the left element, the second - height of the lower element, the third - width of the right element, the fourth - height of the upper element. The property can accept and return the array either as a four scalars, or as an anonymous array of four scalars. Methods get_active_area [ TYPE = 0, WIDTH, HEIGHT ] Calculates and returns the extension of the area without the border elements, or the active area. The extension are related to the current size of a widget, however, can be overridden by specifying WIDTH and HEIGHT. TYPE is an integer, indicating the type of calculation: TYPE = 0 Returns four integers, defining the area in the inclusive-exclusive coordinates. TYPE = 1 Returns four integers, defining the area in the inclusive-inclusive coordinates. TYPE = 2 Returns two integers, the size of the area. Prima::GroupScroller The class is used for widgets that contain optional scroll bars, and provides means for their maintenance. The class is the descendant of Prima::IntIndents, and adjusts the indents property when scrollbars are shown or hidden, or borderWidth is changed. The class does not provide range selection for the scrollbars; the descentant classes must implement that. The descendant classes must follow the guidelines: o A class must provide "borderWidth", "hScroll", and "vScroll" property keys in profile_default() . A class may provide "autoHScroll" and "autoVScroll" property keys in profile_default() . o A class' init() method must set "{borderWidth}", "{hScroll}", and "{vScroll}" variables to 0 before the initialization, call "setup_indents" method, and then assign the properties from the object profile. If a class provides "autoHScroll" and "autoVScroll" properties, these must be set to 0 before the initialization. o If a class needs to overload one of "borderWidth", "hScroll", "vScroll", "autoHScroll", and "autoVScroll" properties, it is mandatory to call the inherited properties. o A class must implement the scroll bar notification callbacks: "HScroll_Change" and "VScroll_Change". o A class must not use the reserved variable names, which are: {borderWidth} - internal borderWidth storage {hScroll} - internal hScroll value storage {vScroll} - internal vScroll value storage {hScrollBar} - pointer to the horizontal scroll bar {vScrollBar} - pointer to the vertical scroll bar {bone} - rectangular widget between the scrollbars {autoHScroll} - internal autoHScroll value storage {autoVScroll} - internal autoVScroll value storage The reserved method names: set_h_scroll set_v_scroll insert_bone setup_indents reset_indents borderWidth autoHScroll autoVScroll hScroll vScroll The reserved widget names: HScroll VScroll Bone Properties autoHScroll BOOLEAN Selects if the horizontal scrollbar is to be shown and hidden dynamically, depending on the widget layout. autoVScroll BOOLEAN Selects if the vertical scrollbar is to be shown and hidden dynamically, depending on the widget layout. borderWidth INTEGER Width of 3d-shade border around the widget. Recommended default value: 2 hScroll BOOLEAN Selects if the horizontal scrollbar is visible. If it is, "{hScrollBar}" points to it. vScroll BOOLEAN Selects if the vertical scrollbar is visible. If it is, "{vScrollBar}" points to it. Properties setup_indents The method is never called directly; it should be called whenever widget layout is changed so that indents are affected. The method is a request to recalculate indents, depending on the widget layout. The method is not reentrant; to receive this callback and update the widget layout, that in turn can result in more "setup_indents" calls, overload "reset_indents" . reset_indents Called after "setup_indents" is called and internal widget layout is updated, to give a chance to follow-up the layout changes. AUTHOR
Dmitry Karasik, <dmitry@karasik.eu.org>. SEE ALSO
Prima, Prima::Widget, Prima::InputLine, Prima::Lists, Prima::Edit, Prima::Outlines, Prima::ScrollBar. perl v5.14.2 2009-02-24 Prima::IntUtils(3)
All times are GMT -4. The time now is 06:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy