Linux

  1. Home
  2. Computing & Technology
  3. Linux

GNU/Linux Command-Line Tools Summary

From Authors, for About.com


   GNU/Linux Command-Line Tools Summary
   Prev        Next

Chapter 12. Mathematical tools


       num-utils homepage
        

The "num-utils" homepage, Num Utils, contains a variety of command line programs that could be useful when performing maths on your GNU/Linux machine.

  • units
  •    

    Convert units of measurement between different scales. For example, centimeters to inches, litres to gallons.

    Simply run the program, I recommend running it as follows:


       

    units --verbose

    This will run the program and it will tell you exactly what it is doing.

    Example: you enter "60 meters" then you want it worked out in "kilometers". The first line will tell you what this evaluates to.

    If you wanted the conversion rate for "meters" to "kilometers" read the second line of the output (which will tell you meters/1000).


           To exit
            

    Press CTRL -D (end-of-file key) when you are finished using units .


  • python
  •    

    Python is a very powerful, easy to learn, general purpose, interpreted programming language. And it makes a great calculator! If you don't have a calculator installed then simply type python , then hit [Enter].

    This will execute the Python interpreter in interactive mode. Type your sums just like you would use a calculator. Note that if you want to work out fractions make sure you use a decimal point and a zero to obtain the correct answer (otherwise it will use integer division).

    To start python in interactive mode, simply type:


       

    python

    Once python is started you can use it to add up sums or maybe do some python programming.

    Use CTRL -D (end-of-file key) to exit the Python interpreter.


  • numgrep
  •    

    A little bit like grep only this is designed for numbers only.

    Use '/' (forward slashes) to contain each expression.

    Use m<n> to find multiples of the number n and use f<n> to find factors of the number n.

    Use commas to seperate expressions and .. (two dots) to represent a range.

    For example, to input from standard input you could simply type:


       

    numgrep

    To input from a file and look for numbers between 1 and 1000 you could type:


       

    numgrep /1..1000/ file_name


           This tool comes from the num-utils package
            

    Please note that this tool is part of the num-utils package.



   Prev    Home    Next
   Finding Text Within Files         Network Commands


* License

* GNU/Linux Command-Line Tools Summary Index

Explore Linux

About.com Special Features

Build Your Own Website

Step-by-step advice on how to do everything from choosing a Web host to promoting your content. More >

Connect Your Home Computers

Easy ways to connect two computers for networking purposes. More >

Linux

  1. Home
  2. Computing & Technology
  3. Linux
  4. Linux Documentation
  5. Linux Tools Summary
  6. GNU/Linux Command-Line Tools Summary - Mathematical tools

©2009 About.com, a part of The New York Times Company.

All rights reserved.