Banner not displaying full content


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Banner not displaying full content
# 1  
Old 01-19-2012
Banner not displaying full content

HI,

while using banner command, i am not getting the full content in the screen:
Code:
banner "UNIX AUTOMATION"
#     # #     #   ###   #     #            #    #     # ####### ####### #     #
#     # ##    #    #     #   #            # #   #     #    #    #     # ##   ##
#     # # #   #    #      # #            #   #  #     #    #    #     # # # # #
#     # #  #  #    #       #            #     # #     #    #    #     # #  #  #
#     # #   # #    #      # #           ####### #     #    #    #     # #     #
#     # #    ##    #     #   #          #     # #     #    #    #     # #     #
 #####  #     #   ###   #     #         #     #  #####     #    ####### #     #

"ATION" is missing. How to make it to display the whole content?

Thanks.

My operating system is SunOS4,

Thanks
# 2  
Old 01-19-2012
"banner" prints only 10 characters. Rest is truncated.
# 3  
Old 01-19-2012
In man banner
Code:
DESCRIPTION
     banner prints its arguments (each up to 10 characters  long)
     in large letters on the standard output.

# 4  
Old 01-19-2012
Try:

Code:
banner "unix" "automation"

 #    #  #    #     #    #    #
 #    #  ##   #     #     #  #
 #    #  # #  #     #      ##
 #    #  #  # #     #      ##
 #    #  #   ##     #     #  #
  ####   #    #     #    #    #


   ##    #    #   #####   ####   #    #    ##     #####     #     ####   #    #
  #  #   #    #     #    #    #  ##  ##   #  #      #       #    #    #  ##   #
 #    #  #    #     #    #    #  # ## #  #    #     #       #    #    #  # #  #
 ######  #    #     #    #    #  #    #  ######     #       #    #    #  #  # #
 #    #  #    #     #    #    #  #    #  #    #     #       #    #    #  #   ##
 #    #   ####      #     ####   #    #  #    #     #       #     ####   #    #

This User Gave Thanks to methyl For This Post:
# 5  
Old 01-19-2012
Thanks Methyl!! And also it seems converts it's arguments to UPPER case by default.
# 6  
Old 01-19-2012
It's not by default, it's by design. See "man banner".

There are several hundred commands in unix. Are you going to question the function of every command I wonder?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

100% Inode full with only 67% FS full.

AIX Version 6.1 and 7.1. I understand that when the OS initially creates the FS and inodes, its pretty strict, but not always tuned to a 1:1 ratio. I see the same thing when adding a whole disk LV to a separate device. It seems that when we expand a filesystem the inodes don't get tuned... (5 Replies)
Discussion started by: mrmurdock
5 Replies

2. Shell Programming and Scripting

Content of attachment is displaying along with subject in mailx

Hi All, I want to send the csv to an email address. I have tried the below two approaches. Approach1: Got error -ksh: uuencode: not found $ uuencode test_file.csv test_file.csv | mailx -s "Attaching test" msdc.kiran@gmail.com </usr/home/test_file.csv -ksh: uuencode: not found Approach2:... (6 Replies)
Discussion started by: ROCK_PLSQL
6 Replies

3. HP-UX

PS output is not displaying full process running

I have 4 HPUX 11.31 servers with the same Quality Pack bundles. "AS FAR AS I CAN TELL" no system files have been modified. /usr/bin/ps is the same date size and creation date terminfo file (x-->xterm) is the same date size and creation date shell (ksh) is the same date size and creation date ... (4 Replies)
Discussion started by: mrmurdock
4 Replies

4. Shell Programming and Scripting

Problem while displaying(cat) file content inside telnet loop .

Hi Team, Not getting the file output inside my email which i am sending from unix box. . Please refer the below code : #!/bin/sh { sleep 5 echo ehlo 10.56.185.13 sleep 3 echo mail from: oraairtel@CNDBMUREAPZP02.localdomain sleep 3 echo rcpt to: saurabhtripathi@anniksystems.com... (1 Reply)
Discussion started by: tripathi1990
1 Replies

5. Homework & Coursework Questions

Command combination for displaying header and content

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: You are given a ANSI text file (a.txt) in the following format and with the following contents-: NAME ROLL... (7 Replies)
Discussion started by: sreyan32
7 Replies

6. UNIX for Dummies Questions & Answers

Command combination for displaying header and content

Hi everyone, I have UNIX this semester and I am just getting started with the commands. An interesting question came up while discussing the head and tail commands. Suppose that I have text file with the following data in the following format-: NAME ROLL MARKS Sam 05 ... (2 Replies)
Discussion started by: sreyan32
2 Replies

7. Shell Programming and Scripting

Facing issues with Content-Type:application/x-download Content-Disposition:attachment

I am in the process of developing a perl cgi page. I had succeeded in developing the page but there are few errors/issues with the page. description about cgi page: My CGI page retrieves all the file names from an directory and displays the files in drop down menu for downloading the... (5 Replies)
Discussion started by: scriptscript
5 Replies

8. Homework & Coursework Questions

Linux displaying content information

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Using the fixed length field file called famous.dat make a one-line Unix command - using pipe(s) - to display an... (5 Replies)
Discussion started by: wizardoz123456
5 Replies

9. AIX

Unable to get the full content into a file when I redirect installp command output..

When i use the command to check the preview of the filesets to be installed using CLI # When using this commad 'm able to see all Preview view of the filesets to be installed installp -apgX -d "." all # When I redirected the same output to a file 'm able to see only half the details... (1 Reply)
Discussion started by: Sounddappan
1 Replies
Login or Register to Ask a Question