如何从 C/C++ 中找到终端列的数量程序?

发布于 2024-11-19 13:21:20 字数 359 浏览 0 评论 0原文

可能的重复:
在 C 中获取终端宽度?

在 Linux 和 OS X 上,我的 shell 报告 $COLUMNS 有终端窗口的宽度——调整窗口大小将调整此 shell 变量。

但在我的 C/C++ 程序中, getenv("COLUMNS") 似乎没有找到该变量。

有人有解释吗?或者让我的 C++ 程序计算出它正在运行的终端的宽度的替代建议(用于一些帮助消息自动换行)?

Possible Duplicate:
Getting terminal width in C?

On Linux and OS X, my shell reports $COLUMNS has the width of the terminal window -- and resizing the window will adjust this shell variable.

But in my C/C++ program, getenv("COLUMNS") doesn't seem to find the variable.

Anybody have an explanation? Or an alternate suggestion for letting my C++ program figure out the width of the terminal it's running in (for some help message word wrapping)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如梦亦如幻 2024-11-26 13:21:20

也许是这样的:

#include <sys/ioctl.h>
#include <stdio.h>

int main()
{
    struct winsize w;
    ioctl(0, TIOCGWINSZ, &w);

    printf("lines %d\n", w.ws_row);
    printf("columns %d\n", w.ws_col);
    return 0;
}

直接取自:Gettingterminal width in C?

Perhaps something like this:

#include <sys/ioctl.h>
#include <stdio.h>

int main()
{
    struct winsize w;
    ioctl(0, TIOCGWINSZ, &w);

    printf("lines %d\n", w.ws_row);
    printf("columns %d\n", w.ws_col);
    return 0;
}

Taken straight from: Getting terminal width in C?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文