![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Ascii to caracter | flame_eagle | Shell Programming and Scripting | 4 | 02-22-2008 07:13 AM |
| how i prepare a c++ code(c code) for implementing my own protocol format | amitpansuria | High Level Programming | 1 | 09-06-2007 08:09 PM |
| SSH key code versus server key code | Texan | Security | 1 | 04-12-2006 08:57 AM |
| source code ASCII to HEx | Thippeswamy | Linux | 1 | 01-30-2006 10:11 PM |
| Ftp :bin and ascii | smehra | UNIX for Advanced & Expert Users | 1 | 03-08-2005 07:22 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
code ASCII for Caracter -->> '
I'm a question:
the expresiion 'expr $a +1' use the caracter --> ' (is not shift+ ? !!!) what is the code ascii for generate this caracter ?????? tank's |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
See man ascii or http://en.wikipedia.org/wiki/ASCII
|
|
#3
|
|||
|
|||
|
Perhaps you mean a backtick ` ASCII 96
The single tic or single quote ' is ASCII 39 |
|
#4
|
||||
|
||||
|
With bash and ksh, you can also use the syntax $() :
Code:
$(expr $a +1) # same as `expr $a +1` Timestamp=$(date +'%Y%m%d%H%M%S') |
||||
| Google The UNIX and Linux Forums |