An open API service indexing awesome lists of open source software.

https://github.com/jwilk/unfaithful-less

less (without -U) is not a faithful pager
https://github.com/jwilk/unfaithful-less

security

Last synced: 5 months ago
JSON representation

less (without -U) is not a faithful pager

Awesome Lists containing this project

README

          

.. code:: console

$ less -FX hello.c
// Copyright 2015-2022 Jakub Wilk
// SPDX-License-Identifier: MIT

#include // for printf

int main(int argc, char **argv)
{
printf("Hello world!\n");
return 0;
}

$ gcc -Wall hello.c -o hello && ./hello
________
< ^H^H^H >
--------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||

.. vim:ts=3 sts=3 sw=3 et ft=rst