How do I search a file using "less" for a value with a decimal point?

notAChance

So I less my file:

less myFile.log

Then I try to search for a value:

/70.5

I've since learned less uses regex, so . is a wildcard. I've tried to escape it with no success.

Stephen Kitt
/70\.5

will do the trick (inside less).

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I include newlines in a search in less?

From Dev

how to search in all file using less

From Dev

How do I find the floating point value ending in most zero decimal digits in a given range?

From Dev

How do I find the floating point value ending in most zero decimal digits in a given range?

From Dev

How do I create a system restore point using a batch file?

From Dev

How do I display a decimal value to 2 decimal places?

From Dev

How do i point a propertyvaluefactory to a value of a map?

From Dev

How do I write an integer value to a csv file using opencsv

From Dev

How do i search a number in a file?

From Dev

How do I write all lines from less to a file?

From Dev

How do I set $LESS invocation options in a lesskey file?

From Dev

How do I grep a file in a smb mount point without using mount or fstab?

From Dev

How do I get the value of the decimal.Inexact exception?

From Dev

How do I convert a decimal year value into a Date in Javascript?

From Dev

How do I properly post a decimal value in a Razor View?

From Dev

How do I get Decimal to reflect value correctly?

From Dev

How should I reset a less variable using its own value

From Dev

How should I reset a less variable using its own value

From Dev

How do you read an input value to a desired amount of digits after the decimal point?

From Dev

How do I search for a specific JSON key value pair using Javascript?

From Dev

How do I add a right-click option to search the web using a selected file's name?

From Dev

Using R - How do I search for a file/folder on all drives (hard drives as well as USB drives)

From Java

How do I round a decimal value to 2 decimal places (for output on a page)

From Dev

c# - How do I round a decimal value to 2 decimal places. with , every 1000

From Dev

How do I extract any number of digits after the decimal point of a Float and convert it to a String in Swift?

From Dev

How do I use string formatter to restrain two digits before decimal point and two digits after in Ruby?

From Dev

How do I force a float and int to have a decimal point or trailing zeros

From Dev

How do I convert a string to a Python Decimal in German locale (with comma instead of a point)

From Dev

How do I use string formatter to restrain two digits before decimal point and two digits after in Ruby?

Related Related

  1. 1

    How do I include newlines in a search in less?

  2. 2

    how to search in all file using less

  3. 3

    How do I find the floating point value ending in most zero decimal digits in a given range?

  4. 4

    How do I find the floating point value ending in most zero decimal digits in a given range?

  5. 5

    How do I create a system restore point using a batch file?

  6. 6

    How do I display a decimal value to 2 decimal places?

  7. 7

    How do i point a propertyvaluefactory to a value of a map?

  8. 8

    How do I write an integer value to a csv file using opencsv

  9. 9

    How do i search a number in a file?

  10. 10

    How do I write all lines from less to a file?

  11. 11

    How do I set $LESS invocation options in a lesskey file?

  12. 12

    How do I grep a file in a smb mount point without using mount or fstab?

  13. 13

    How do I get the value of the decimal.Inexact exception?

  14. 14

    How do I convert a decimal year value into a Date in Javascript?

  15. 15

    How do I properly post a decimal value in a Razor View?

  16. 16

    How do I get Decimal to reflect value correctly?

  17. 17

    How should I reset a less variable using its own value

  18. 18

    How should I reset a less variable using its own value

  19. 19

    How do you read an input value to a desired amount of digits after the decimal point?

  20. 20

    How do I search for a specific JSON key value pair using Javascript?

  21. 21

    How do I add a right-click option to search the web using a selected file's name?

  22. 22

    Using R - How do I search for a file/folder on all drives (hard drives as well as USB drives)

  23. 23

    How do I round a decimal value to 2 decimal places (for output on a page)

  24. 24

    c# - How do I round a decimal value to 2 decimal places. with , every 1000

  25. 25

    How do I extract any number of digits after the decimal point of a Float and convert it to a String in Swift?

  26. 26

    How do I use string formatter to restrain two digits before decimal point and two digits after in Ruby?

  27. 27

    How do I force a float and int to have a decimal point or trailing zeros

  28. 28

    How do I convert a string to a Python Decimal in German locale (with comma instead of a point)

  29. 29

    How do I use string formatter to restrain two digits before decimal point and two digits after in Ruby?

HotTag

Archive