Unix and Linux Discussions Tagged with number |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
10,296 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,356 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
13,270 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,007 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
26,819 |
Shell Programming and Scripting |
|
|
|
15 |
32,844 |
Shell Programming and Scripting |
|
|
|
1 |
17,365 |
Programming |
|
|
|
3 |
5,261 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
11,489 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
6,087 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,026 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,869 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,570 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,639 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,967 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
22,422 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
4,350 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,389 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,265 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
10,965 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,573 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,041 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
15,868 |
Solaris |
|
|
|
19 |
16,428 |
AIX |
|
|
|
4 |
6,839 |
Solaris |
|
|
|
8 |
5,554 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,263 |
Shell Programming and Scripting |
|
|
|
4 |
3,513 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,645 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,950 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,261 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
8,172 |
Shell Programming and Scripting |
|
|
|
5 |
2,535 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,737 |
Shell Programming and Scripting |
|
|
|
7 |
3,924 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,329 |
What is on Your Mind? |
|
|
|
4 |
2,808 |
Shell Programming and Scripting |
|
|
|
4 |
4,490 |
Shell Programming and Scripting |
|
|
|
9 |
5,163 |
Shell Programming and Scripting |
|
|
|
2 |
3,135 |
UNIX for Beginners Questions & Answers |
gbase(1) General Commands Manual gbase(1)
NAME
gbase - small numeric base converter
SYNOPSIS
gbase [options]
DESCRIPTION
gbase converts numbers between bases 2 (binary), 8 (octal), 10 (decimal), 16 (hexadecimal).
If you specify a number on the command line (preceded by a switch to describe the base the number is in) the program will display that num-
ber in the four bases on the console and exit.
You can also specify the -s switch which will allow you to enter/display signed numbers. (This allows the use of a - (minus) before a deci-
mal number).
Just running the program without any switches will display the main window. There are four entry boxes, corresponding to each of the four
bases. You can type into any of these boxes and the others will update automagically. The program will ignore any characters that are not
allowed for that particular base. It will only allow a - (minus) at the start of a decimal number, if the signed option is on.
OPTIONS
--help Display a short help screen and exit
--version
Print version number and exit
-s Treat the number as a signed value
-d decimal number
Print this decimal number in all bases
-h hex number
Print this hexadecimal number in all bases
-o octal number
Print this octal number in all bases
-b binary number
Print this binary number in all bases
AUTHOR
gbase is Copyright (C) 1999 Damian Kramer, Roger Dunce.
gbase August 2003 gbase(1)