Tagged Questions

0
votes
2answers
47 views

Filter function for less +F

When watching a growing log file with e.g. "less -iS +F service.log" I want to limit the display to lines matching a certain pattern. I tried something like less +F service.log | …
0
votes
3answers
15 views

less command with multiple files: How to navigate to next/previous

I just found out I can use less with multiple files. less status line tells me (END) - Next: file2.txt But how do I navigate previous/next from less?
1
vote
5answers
1k views

how to display line numbers in less (gnu)?

somebody knows the command to make less display line numbers in the left column?
2
votes
3answers
121 views

pipe the output of a command into less or into cat depending on length

First, let me state that this is a programming question (and thus does not belong on superuser et. al.) because I'm talking shell programming. This could almost be a golf question, …
2
votes
1answer
37 views

View Mercurial log/status with less by default

Hi, Is there a way to make mercurial use less to show me the logs/diffs/whatever by default? Now mercurial just displays everything when I type 'hg log'. I suppose I can use alias …
1
vote
3answers
140 views

Ruby Command Line: How can I send the CTRL-C command via text in the command line?

Hi, I am trying to create a simple Automator droplet that will take the style.less file dropped into it and run the following LESS command on it: $ LESSC {DROPPED_FILE} --watch w …
2
votes
1answer
36 views

how can i search for 3 strings at a time in vi editor

Hi, i was wondering how could we do it.i.e., search for 3 strings at a time in vi like i do :/xyz in command mode. how could i add 2 more strings so that the cursor will stop at a …
1
vote
1answer
43 views

How can I add the “--watch” flag to this TextMate snippet?

I love TextMate as my editor for all things web, and so I'd like to use a snippet to use it with style.less files to automatically take advantage of the .less way of compiling .css …
7
votes
4answers
114 views

Less gets keyboard input from stderr?

Hello! I'm taking a look at the code to the 'less' utility, specifically how it gets keyboard input. Interestingly, on line 80 of ttyin.c, it sets the file descriptor to read from …
2
votes
2answers
204 views

To get colors to Less in Ubuntu’s Zsh

How can you get similar highlightings to Zsh's Less than Bash's Less in Ubuntu? I switched from OS X to Ubuntu. My Less do not work as expected in Zsh. Manuals in my Less are gre …
1
vote
0answers
37 views

Is there a paging version of `watch`? [closed]

Under a UNIX shell, how can I get a similar effect to the watch command, but with paging so that I can scroll around in the output if it takes up more than one screen? In other wo …
0
votes
2answers
48 views

To fix a bug in Less’ command by noting no. of parameters

This question is based on this thread. The code function man() { man "$1" > /tmp/manual; less /tmp/manual } Problem: if I use even one option, the command does n …
0
votes
1answer
57 views

Unable to unbind a shell function

This question is based on the thread. I have the shell function function man() { man "$1" > /tmp/manual; less /tmp/manual } The problem is there exists the comma …
0
votes
3answers
102 views

Unable to make Less to indicate location in percentage

Thank you to Alex in showing me how to put a percentage sign in Less! I now aim to show the percentage sign also when you run, for example, the command man emacs If you run it, …