Sponsored Content
Top Forums Shell Programming and Scripting Change indentation in scripts Post 302780053 by bakunin on Wednesday 13th of March 2013 05:17:05 PM
Old 03-13-2013
chubler_XL is correct. I use 5 spaces indentation and if a line doesn't fit within 80 characters i think hard if it is really good to do it that way (in most cases it isn't and it is the rare exception if it is).

To reduce the indentation in sed (replace "<b>" and "<t>" with literal blanks/tabs):

Code:
sed ':search
     /^<b><b>/ {
                 s/^\([<b>]*\)\(<b><b>\)\([^<b>]\)/\1;\3/
                 b search
              }

     :replace
     /^;/     {
                 s/^\(;*\);/\1<b>/
                 b replace
              }' /path/to/input


You can easily adapt this to other levels of indentation by modifying the parts marked bold to contain more or less blanks. Note that lines have to start leftmost - no effort is made to deal with lines not starting at character position 1.

I hope this helps.

bakunin
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

find all scripts to change DNS name??

hi, we are going for a new unix box and the ip and DNS name has to be changed in all the scripts, where ever it is hard coded. i was trying the below mentioned command to list all such scripts where the ip/dns name is hard coded: find / -type f -print | xargs grep -l "ip address" >>... (0 Replies)
Discussion started by: Bhups
0 Replies

2. Programming

A question of indentation

Hi, Using GNU indent(1) I tried to indent a C source file which has no indentation (all lines start at column 1). The result I am trying to achieve, should look like this with the exception that only tabs are used for indentation (no spaces). Unfortunately, I couldn't find the appropriate... (1 Reply)
Discussion started by: Michael Iatrou
1 Replies

3. Shell Programming and Scripting

How to make the same change in multiple shell scripts?

I would like to make the same change in multiple shell script files and would like to know if anyone can be of some help? I would appreciate it. (4 Replies)
Discussion started by: rdakhan
4 Replies

4. Shell Programming and Scripting

Scripts fails if you change its code during the execution.

So a script is working properly (tested many times) , then you add a new fine piece of code ,finaly its fails generally with a syntax error at the last line of the script. :confused:... does anybody why this happens? >uname -a HP-UX test... (4 Replies)
Discussion started by: Klashxx
4 Replies

5. Shell Programming and Scripting

Indentation help

Hi I have coded 300 line script.Its not indented properly.i am not good at indentation. I would appreciate your help on this. i want to use a 4 space indentataion.Hence if i "set tabstop=4" and use tabs for coding and if some one else open this script in their system it looks unindented since... (11 Replies)
Discussion started by: pinnacle
11 Replies

6. UNIX for Advanced & Expert Users

What files or programs have the ability to change your default network scripts and config

What files or programs have the ability to change your default network scripts and config files? All 3 of these very important files got changed on their own. /etc/sysconfig/network-scripts/ifcfg-wlan0 /etc/sysconfig/networking/devices/ifcfg-wlan0... (4 Replies)
Discussion started by: cokedude
4 Replies

7. Shell Programming and Scripting

Can anybody change this into Linux shell scripts?

@echo off SET "p0=%~0" SET "p1=%~1" SET "p2=%~2" SET "p3=%~3" SET "p4=%~4" SET "p5=%~5" SET "p6=%~6" SET "p7=%~7" SET "p8=%~8" SET "p9=%~9" SHIFT SET "p10=%~9" SHIFT SET "p11=%~9" SET "zip_path=D:\OraOutput\interco\%p10%" echo Program... (5 Replies)
Discussion started by: monisha
5 Replies

8. UNIX for Dummies Questions & Answers

Indentation using awk

I need to write an awk program who does this http://i.stack.imgur.com/yzSqB.jpg I'd be very grateful for any help, Thanks a lot (1 Reply)
Discussion started by: guy9050
1 Replies

9. Homework & Coursework Questions

Indentation using awk

1. The problem statement, all variables and given/known data: I need to write an awk program who does this (sorry its too big) http://i.stack.imgur.com/yzSqB.jpg 2. Relevant commands, code, scripts, algorithms: .. 3. The attempts at a solution (include all code and scripts): declaring a... (2 Replies)
Discussion started by: guy9050
2 Replies

10. UNIX for Beginners Questions & Answers

Indentation for Lists in html

An writing some html instructions to have text beside an image. The image is located on the left and I want the tect to appear on the right side of the image. The text includes a list. The problem is that the list boxes and not shifted. The text within the list align on the left with the... (20 Replies)
Discussion started by: kristinu
20 Replies
FBB::Manipulators(3bobcat)                                         Manipulators                                         FBB::Manipulators(3bobcat)

NAME
FBB::Manipulators - Manipulators defined in the FBB namespace DESCRIPTION
Various manipulators are defined within the FBB namespace. This manual page provides an overview of the manipulators that are currently defined in the FBB namespace. MANIPULATORS
o FBB::center: defined in bobcat/align This manipulator can be specified when constructing an FBB::Align object to indicate that a table column should center its contents. o FBB::decindent: defined in bobcat/indent This manipulator reduces the indentation level. o FBB::def: defined in bobcat/table This manipulator `completes' a Table object to a full rectangular object. It can be inserted into a Table object. o FBB::err: defined in bobcat/msg Generates an error message. o FBB::fatal: defined in bobcat/msg Generates a fatal message, followed by an Errno(1) exception. o FBB::fs: defined in bobcat/tablebuf Starts the definition of the next element in a table. o FBB::info: defined in bobcat/msg Generates an informational message. o FBB::incindent: defined in bobcat/indent This manipulator will increment the indentation level. o FBB::indent: defined in bobcat/indent This manipulator inserts the currently defined number of indentation blanks into an ostream. o FBB::indentdec: defined in bobcat/indent This manipulator will insert, then reduce the indentation level. o FBB::indentinc: defined in bobcat/indent This manipulator will insert, then increment the indentation level. o FBB::lm: defined in bobcat/ofoldstreambuf This manipulator sets the left margin of FBB::OFoldStream objects. o FBB::mlm: defined in bobcat/ofoldstreambuf This manipulator modifies (alters) the left margin of FBB::OFoldStream objects. o FBB::nlindent: defined in bobcat/indent This manipulator will insert a newline, then indent. o FBB::rs: defined in bobcat/tablebuf Starts the definition of the next row in a table. o FBB::spool: defined in bobcat/msg Generates a (partial) informational message. o FBB::warning: defined in bobcat/msg Generates a warning message. SEE ALSO
bobcat(7), columnwidth(3bobcat), equalwidth(3bobcat), errno(3bobcat), indent(3bobcat), lm(3bobcat), mlm(3bobcat), msg(3bobcat), table(3bob- cat) BUGS
None Reported. DISTRIBUTION FILES
o bobcat_3.01.00-x.dsc: detached signature; o bobcat_3.01.00-x.tar.gz: source archive; o bobcat_3.01.00-x_i386.changes: change log; o libbobcat1_3.01.00-x_*.deb: debian package holding the libraries; o libbobcat1-dev_3.01.00-x_*.deb: debian package holding the libraries, headers and manual pages; o http://sourceforge.net/projects/bobcat: public archive location; BOBCAT
Bobcat is an acronym of `Brokken's Own Base Classes And Templates'. COPYRIGHT
This is free software, distributed under the terms of the GNU General Public License (GPL). AUTHOR
Frank B. Brokken (f.b.brokken@rug.nl). libbobcat1-dev_3.01.00-x.tar.gz 2005-2012 FBB::Manipulators(3bobcat)
All times are GMT -4. The time now is 09:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy