Draw a Horizontal and Vertical line on UNIX


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Draw a Horizontal and Vertical line on UNIX
# 1  
Old 02-09-2009
Draw a Horizontal and Vertical line on UNIX

I want to draw a horizontal and vertical line on Unix. Please suggest some solution.
# 2  
Old 02-09-2009
Please give more details...

There are many ways to do this, one could open Open Office Draw or Gimp and draw a horizontal/vertical line. One could create a c++ application that draws a line (vertical/horizontal) on the screen, or many other various ways one could "draw a line" in Unix.

There is just no way to get what you are trying to do from the lines you wrote.
# 3  
Old 02-09-2009
I want a graph look like

12:00 3:00
Line |_________|

suggestion some solution
# 4  
Old 02-09-2009
Where is the data for the graph coming from?

Are you just manually creating a graph in a graphic application?

Are you asking for a log analysis tool that will create a graph?

There is really no information here to know what you want. I am sorry really, but without more information I doubt anyone can help you as we do not fully understand what you need.
# 5  
Old 02-09-2009
Yeah, I think you should need to be more specific and detailed with your question. But if all you need to do is print a simple horizontal/vertical line then you can try the ff.:

Code:
yes "|" | head -100 # Vertical line

or

Code:
yes "_" | head -100 # Horizontal line

or

Code:
while (( i <= 100 )); do
printf "_"
(( i = i + 1 ))
done

or

Code:
while (( i <= 100 )); do
printf "|"
(( i = i + 1 ))
done

# 6  
Old 02-09-2009
Thanks angheloko, tell me one more thing


12:00

Line |__________|

How to write 12:00 on 1st spot and 3:00 on 2nd
# 7  
Old 02-09-2009
Smilie

I'm not sure what you're getting at or what your desired output really is but if you just need to display:

Code:
12:00 3:00
Line |_________|

Then just:

Code:
echo "12:00 3:00"
echo "Line |__________|"

Like I said earlier, you need to post more details man.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Emergency UNIX and Linux Support

Help parsing log from vertical to horizontal line

Hi Expert, i have log in attached (log.txt) i want the log result become horizontal line : recordOpeningTime,servedMSISDN,ratingGroup,datavolumeFBCUplink,datavolumeFBCDownlink 1502260153422B0800,196738930571,3,7946,2219 1502260153422B0800,196738930571,3,233,174... (4 Replies)
Discussion started by: justbow
4 Replies

2. Shell Programming and Scripting

Change the vertical logs to horizontal line

Hi, cat log EPC-SubsId: 3333 EPC-GrIds: RTGHUPA:1:15-11-2013T19:59,22-11-2013T19:59 EPC-GrIds: PrimaXGB_23:10 EPC-SubsId: 4444 EPC-GrIds: RTGHUPB:1:15-11-2013T19:59,22-11-2013T19:59 EPC-SubId: 5555 EPC-GrIds: RTGHUPC:1:15-11-2013T19:59,22-11-2013T19:59 EPC-SubsId: 6666... (1 Reply)
Discussion started by: justbow
1 Replies

3. Shell Programming and Scripting

How do i do the vertical to horizontal??

51009 8746 8912 17986 20315 24998 5368 38934 7805 8566 (4 Replies)
Discussion started by: nikhil jain
4 Replies

4. Shell Programming and Scripting

Need perl or shell script to sort vertical lines to horizontal line in csv format

Need perl or shell script to sort vertical lines to horizontal line in csv format My file like below ------------------------- ================================================================================ PATH PINKY1000#I1-1-ZENTA1000-2#I7-1-ASON-SBR-UP-943113845 ... (4 Replies)
Discussion started by: sreedhargouda.h
4 Replies

5. UNIX for Dummies Questions & Answers

How to move vertical line to Horizontal...

How to move a vertical line to Horizontal line.....Can i use a tr command? code is: StudentID Java .Net C# I want to move this line like this: StudentID Java .Net C# Please use code tags! (3 Replies)
Discussion started by: Arsh10
3 Replies

6. UNIX for Dummies Questions & Answers

vertical to horizontal

dear all, i'm new to unix and i try to figure out the best case for making list of vertical text to become horizontal and skip the line 1 and 2. example text : Data DATE XXXXX MAX 47 53 49 51 48 48 7 46 51 8 25 (6 Replies)
Discussion started by: andrisetia
6 Replies

7. UNIX for Dummies Questions & Answers

Horizontal to vertical

Hi, Silly question, if I have an excel file that looks something like this: ................. Subject 1 Subject 2 Subject 3 Subject 4 Fever..............13...........9.............23..........14 Headache.........2............12...........18..........23... (3 Replies)
Discussion started by: Xterra
3 Replies

8. Shell Programming and Scripting

Need help in changing vertical lines to horizontal line in a file

Hi, I have a file like below robert PREF: 3 AVAIL: henry PREF: 234 AVAIL: john PREF: 145,178 AVAIL: 123 matt PREF: 564,932 AVAIL: ten PREF: 389 AVAIL: kill (2 Replies)
Discussion started by: rocky1954
2 Replies

9. Shell Programming and Scripting

Vertical an horizontal pivoing in unix

Please help me to do Vertical an horizontal pivoing in unix in single run. The input file is like this- MRKT|PROD|PRD|FACT1|FACT2|FACT3|FACT4 M1|P1|PR1|F11|F12|F13|F14 M1|P1|PR2|F21|F22|F23|F24 M1|P1|PR3|F31|F32|F33|F34 M2|P2|PR1|F41|F42|F43|F44 M2|P2|PR2|F51|F53|F54|F55... (4 Replies)
Discussion started by: marut_ashu
4 Replies

10. UNIX for Dummies Questions & Answers

converting horizontal line to vertical line

how to use "tr" command to display horizontal line to vertical line for vertical to horizontal, the command is tr '\n' '\t' <inputfile but what is the command for horizontal to vertical Thanks Vasikaran (3 Replies)
Discussion started by: vasikaran
3 Replies
Login or Register to Ask a Question