![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problem with stack overflow | karthikb23 | HP-UX | 0 | 03-26-2008 02:02 AM |
| what is stack winding and stack unwinding | amitpansuria | High Level Programming | 2 | 08-07-2007 02:46 PM |
| memory stack | aladdin | UNIX for Dummies Questions & Answers | 1 | 05-16-2007 06:17 AM |
| stack query | aloksave | High Level Programming | 4 | 09-16-2005 10:10 AM |
| memory stack problem | jkeagy | High Level Programming | 3 | 08-11-2005 09:39 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
stack problem
Hi,
I'm a complete beginner at all this business so any help is appreciated. I have a script (not written by me) which I need to modify. My problems is.... tail -1c $file .... I understand this will return the final character of the $file variable. I need to make it return the first character of the $file variable. I've already tried first, top, front etc. but non seem to work. And please don't ask what version of unix i'm running - all I do is boot up windows and use a program called Exceed. Cheers for any help. |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Perhaps you might try the head command and not tail ...
|
|
#3
|
|||
|
|||
|
I can only get head to return a set number of lines. i.e. head -n1 would return the first line. I need something to return the first character/byte etc. Is there an a -? I can use to make it output only the first character?
Thanks |
|
#4
|
|||
|
|||
|
Quote:
OK, so head -1 myfile gets you the first line. Now pipe that into a command that will cut the first column out. But if the first line is empty, this solution results in null: Code:
char1=`head -1 myfile | cut -c1` echo "first character is $char1" |
|
#5
|
||||
|
||||
|
Homework problem???
Obvious homework questions. I have reviewed your posts and all of them show classic homework type questions. Please read the FAQs on the www.unix.com home page.
__________________
My brain is your brain |
||||
| Google The UNIX and Linux Forums |