A little unsure of something


 
Thread Tools Search this Thread
Operating Systems Linux A little unsure of something
# 1  
Old 12-15-2006
A little unsure of something

If i want to display a banner that says Happy Bday, but I want to put that output banner into a file called bday4me,

could I use the command (echo) or (banner -w35) Happy Bday >> bday4me

would this command work? Sorry for asking, but i'm at home just now and don't have access to a UNIX system.

thanks Smilie
# 2  
Old 12-15-2006
Code:
banner -w79 "Happy Birthday, Marie" > marie.txt

Create an ascii "banner" with the width of 79 characters. The output is sent to file marie.txt.

Another utility for ascii text art is figlet.
Code:
figlet "Funny!"

# 3  
Old 12-16-2006
These might need to be installed. They don't seem to be standard on my particular linux system...
# 4  
Old 12-16-2006
We do have a search function, folks. Search the Linux forum for "banner" and you might find:

banner command
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Unsure why access time on a directory change isn't changing

Hello... And thanks in advance for any help anyone can offer me I was trying to work out the differences between displaying modify, access, and change times with the 'ls' command. Everything seems in order when I look at files, but the access time on a directory doesn't seem to change when I... (4 Replies)
Discussion started by: bodisha
4 Replies

2. Shell Programming and Scripting

Unsure of sed notation (nu\\t.\*)

This piece of code is in a shell script I'm trying to modify to run on my system. sed s:nu\\t.\*:"nu=0" It's clearly a substitute script which replaces nu\\t.\* with nu = 0. What exactly does nu\\t.\* demarcate though-- I thought it was just the previous nu = xxxxx (which existed and is... (3 Replies)
Discussion started by: czar21
3 Replies

3. Post Here to Contact Site Administrators and Moderators

Unsure what caused an infraction on my account.

Hey everyone. I wasn't sure what it meant when my profile said it had 1 infraction against it, so I thought I'd check it out. Unfortunately, I can't find the post in question. The date from the post in question is 07-09-2008 at 04:24 AM, but from what I can tell is marked as 'private'. I'd... (2 Replies)
Discussion started by: glen.barber
2 Replies

4. UNIX for Dummies Questions & Answers

unsure if this is a unix datestamp??? can you guys tell?

hi everyone im new here and im hoping you could help me out here. Yesterday i removed a time stamp from a program that i am using.This timestamp should contain a date of 04/04/2008 with a time sometime in that day. the stamp in hex is 7C FE 2B 04 DA 4E E3 40 ive looked everywhere and im... (1 Reply)
Discussion started by: uselessprog
1 Replies
Login or Register to Ask a Question