Aligning Characters in Bash/Beautiful Screens


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Aligning Characters in Bash/Beautiful Screens
# 1  
Old 08-02-2009
Aligning Characters in Bash/Beautiful Screens

Howdy,

Supposing I want to output the following code to the screen in a bash script, this works fine until you use variables as below, because the variable could be of any length, meaning the screen output for line 2 will have the ultimate # out of alignment.
Is there a simple way round this?
I have looked at hidden characters in vim using :set invlist but am a bit stumped.


Code:
echo "#############################"
echo "# line1 $var1 $var2             #"
echo "#############################"

thanks

Nick
# 2  
Old 08-02-2009
In bash, one way:

Code:
LL=$(echo "# line1 $1 $2 #"|wc -c)
LL=$((LL - 1))
printf "%${LL}s\n" " " | tr " " "#"
echo "# line1 $1 $2 #"
printf "%${LL}s\n" " " | tr " " "#"

HTH
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Aligning Texts

is there any way to align my text so every column begins on the same line as the previous line? here's my command: printf "THEN ( ${SEARCHPATTB} = Hour = ${CALTOTB} ) %8s => %8s NOW ( ${SEARCHPATT} = Hour = ${CALTOT} ) %7s => %7s Reduced By: %7s -${RESULT}"\\n output i'm currently getting... (2 Replies)
Discussion started by: SkySmart
2 Replies

2. Shell Programming and Scripting

Aligning a file

I have a large text file in following format cat input.txt abc qwert qwer afweferf wdfwefwe ==> kjhjkwdd mnmn ==> jkjkjwekj poiu ==> lklklke tytyutut ==> olkjmnsmn I need to align those lines with the characters " ==>" . I dont want to disturb the lines which dont have "==>". The... (6 Replies)
Discussion started by: ctrld
6 Replies

3. Shell Programming and Scripting

Aligning data

Hi Guys, How can you align data getting the UID, GID HOSTNAME in same column input: server1 uid=1010(faculty) gid=700(teacher) groups=700(teacher), 800(models) student:x:500:500:student:/home/student:/bin/bash server2 uid=1010(OSAD) gid=700(teacher) groups=700(teacher), 809(staff)... (5 Replies)
Discussion started by: invinzin21
5 Replies

4. UNIX for Dummies Questions & Answers

Help with Aligning the content of a txt file

Hello friends Please help me to display the content of a file in specific aligned manner. for ex. the content of the file may be >$TEST WELCOME HI HELLO UNIX SHELL SCRIPTING >$ I want to display the content like . TEST WELCOME HI HELLO ... (18 Replies)
Discussion started by: rajmohan146
18 Replies

5. Red Hat

How can I see all screens of a user?

Hi folks, I was running many commands using root and closed the session. I would like to see if there is a way to go back to the server and see those screens so I can remember what I did the next time I need to do that. Thanks a bunch! (3 Replies)
Discussion started by: 300zxmuro
3 Replies

6. Programming

Aligning for boundary conditions

Hi, I have tcp/ip client server programs which will communicate through reqest,reply c-structures. As the sizeof(struct) may give different value between client and server programs, how do i align properly for boundary conditions. Could anybody please give some suggestion. Thanks in... (3 Replies)
Discussion started by: axes
3 Replies

7. HP-UX

HP UX welcome screens

How I can I remove the welcome screen for HPUX ie * * * * * Welcome to AIX Version 5.3! * * * but only for some users ? Thanks (4 Replies)
Discussion started by: belfastbelle
4 Replies

8. Shell Programming and Scripting

like to share this beautiful shell script

Hello Everybody I recently got this beautiful shell script from my friend. I like to share it with every body as I am bit new to shell scripting enviorment. I hope people in this site will like it. It is related to checking the filesystem threshold limit. After getting threshold limit of... (0 Replies)
Discussion started by: girish.batra
0 Replies
Login or Register to Ask a Question