Tiny Core Linux
Tiny Core Extensions => TCE News => TCE 2.x => Topic started by: Jason W on February 27, 2010, 09:43:05 PM
-
Thanks to bmarkus for:
Title: less-doc.tcz
Description: Similar to more with backward and forward movement
Version: 418
Author: Various
Original-site: http://ftp.gnu.org/gnu/less/
Copying-policy: GPL v3
Size: 33k
Extension_by: bmarkus
Comments: GNU version replacing BusyBox equivalent in base
----
Doc files only
----
Compiled for TC2.x
----
PPI compatible
Change-log: ----
Current: 2010/02/27 First version
Title: less.tcz
Description: Similar to more with backward and forward movement
Version: 418
Author: Various
Original-site: http://ftp.gnu.org/gnu/less/
Copying-policy: GPL v3
Size: 66k
Extension_by: bmarkus
Comments: GNU version replacing BusyBox equivalent in base
----
Binaries only
----
Compiled for TC2.x
----
PPI compatible
Change-log: ----
Current: 2010/02/27 First version
-
Hi, I noticed something about less command, at least in my installation.
When I try ls --help | less
I get blank screen, like all help options for LS are scrolled up and i cant scroll to see them.
-
less only works for files or stdin.
It will not work with stderr.
try:
ls --help 2>&1 | less
-
what 2>&1 do?
-
It redirects stderr to stdout.