Indentation help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Indentation help
# 8  
Old 05-03-2009
Quote:
Originally Posted by cfajohnson
At the top of the buffer, press Ctrl+<space>, move to the bottom of the buffer and press cntl+alt+\
when i press Ctrl+<space>, move to the bottom of the buffer and press cntl+alt+\

This moves all the lines to left starting at position 0.

I want indentation to be like the follwoing
Code:
          if (command)
          then
              echo "hello world"
          fi

Same case for while loops and other syntaxes
# 9  
Old 05-03-2009
Quote:
Originally Posted by zenith
when i press Ctrl+<space>, move to the bottom of the buffer and press cntl+alt+\

This moves all the lines to left starting at position 0.

I want indentation to be like the follwoing
Code:
          if (command)
          then
              echo "hello world"
          fi

Same case for while loops and other syntaxes

Are you in shell-script-mode?

Try M-x (usually Alt-X) shell-script-mode, then do the above.
# 10  
Old 05-03-2009
Quote:
Originally Posted by cfajohnson
Are you in shell-script-mode?

Try M-x (usually Alt-X) shell-script-mode, then do the above.
Change mode to M-x and then moved to the top of buffer pressed
ctrl+space

then moved to the bottom of buffer and pressed ctrl+alt+\

It did not do anything.
All the lines are still starting from the left most side without any indentation

Is it really possible to get all the identation with emac as how a professional shellscripter does indentation?

Help is highly appreciated.
# 11  
Old 05-03-2009
Quote:
Originally Posted by zenith
Change mode to M-x

M-x is not a mode, it allows you to enter a command. After pressing M-x, enter the command:
Code:
shell-script-mode

to enter shell-script mode.
Quote:
Is it really possible to get all the identation with emac as how a professional shellscripter does indentation?

Yes, I do it all the time.
# 12  
Old 05-03-2009
Quote:
Originally Posted by cfajohnson
M-x is not a mode, it allows you to enter a command. After pressing M-x, enter the command:
Code:
shell-script-mode

to enter shell-script mode.
Yes, I do it all the time.
Sir,

I did
1)Alt+x
2)shell-script-mode
3)ctrl+space on top of buffer
4)at bottom of buffer ctrl+alt+\

this did change the code to right by 4 spaces
Code:
    help () {
    print $USAGE
    echo "-h see this help"
    echo "-c input file (required)"
    exit 0 
    }


I would like emac to do as following
Code:
    help () {
        print $USAGE
        echo "-h see this help"
        echo "-c Config File (required)"
        exit 0 
    }

This kind of indentation should be done.
And for nested if statements then it should do indentation for nested if as how it is done by a shell scripter.

Code:
if condition
then
    ....
        if condition
        then
            .......
        fi
fi

Appreciate all your help.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Cshell if clause indentation

I would like to know if indentation is relevant for Cshell scripts. I wrote my code like this: if ((-e file1) && (-e file2)) then cat file1 > file10 cat file2 > file20 endifUsually I write my if clauses like this: if ((-e file1) && (-e file2)) then cat file1 > file10 ... (1 Reply)
Discussion started by: maya3
1 Replies

2. 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

3. 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

4. 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

5. Shell Programming and Scripting

Change indentation in scripts

Hi, I am a professional in writing shell scripts, and I am using a one-space indentation like this for i in file1 file2 do if then echo "$i" fi done so very deeply nested stuff still fits on my screen. At release time I usually double the indentation via sed 's/^ */&&/' to make... (8 Replies)
Discussion started by: MadeInGermany
8 Replies

6. Shell Programming and Scripting

indentation and lowercase to uppercase

hi, i need to write a bash script that does two things. the program will take from the command line a file name, which is a C code, and an integer, which is the size of my indentation i would then have to indent every nested code by the number of columns provided by the user in the... (1 Reply)
Discussion started by: kratos.
1 Replies

7. Shell Programming and Scripting

Regarding indentation using unix script

I have piece of Informatica code in a file as : IIF(substr(flag,0,2)=1,false,IIF(flag= 1 ,0,NULL)) Please provide me with idea how to write a unix script which reads this file and write indented code into another file. The output in the second file should look as: ... (1 Reply)
Discussion started by: srikanth.ch
1 Replies

8. UNIX and Linux Applications

Setting vi indentation to k&r style?

A bit of searching on Google did not seem to yield any really helpful results on how to set vim to use k&r indentation style. I know Emacs has such a feature, but does vim? If so, how do I turn it on? I am just starting to learn vi, and when I am coding in C it looks really ugly without some sort... (2 Replies)
Discussion started by: kermit
2 Replies

9. Programming

Emacs line indentation

Hi. I'm writing a document in Python, so indentation is crucial. I want to indent a whole section by exactly one tab. Any idea how to go about this? I'm using terminal emacs (no mouse input) Thanks for any help! (2 Replies)
Discussion started by: Rledley
2 Replies

10. 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
Login or Register to Ask a Question