鱼C论坛

 找回密码
 立即注册
查看: 1761|回复: 12

[已解决]linux暂停报错

[复制链接]
发表于 2022-5-23 09:26:51 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
代码如下:
import os

os.system('pause')

windows系统正常,能暂停
linux下报错:
    sh: pause: not found

请问一下,在linux这代码应该怎么改,谢谢各位大神
最佳答案
2022-5-23 11:43:37
#!/usr/bin/env python
#coding=utf-8

import termios
import sys

tios = termios.tcgetattr(sys.stdin.fileno())
tios[3] &= ~(termios.ICANON | termios.ECHO)
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, tios)

print('Press any key to continue...', end = '', flush = True)
sys.stdin.read(1)
print('', flush = True)

tios = termios.tcgetattr(sys.stdin.fileno())
tios[3] |= termios.ICANON | termios.ECHO
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, tios)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-5-23 09:59:00 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 10:35:22 | 显示全部楼层
因为在Linux的shell里pause不是一条命令,所以你这么写肯定是不对的
有帮助的话给个最佳答案谢了!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 10:41:08 | 显示全部楼层
$ ls
pause.c
$ cat pause.c
#include <stdio.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <termios.h>

int main(void) {
    {
        struct termios termios;
        ioctl(STDIN_FILENO, TCGETS, &termios);
        termios.c_lflag &= ~(ICANON | ECHO);
        ioctl(STDIN_FILENO, TCSETS, &termios);
    }
    printf("Press any key to continue...");
    getchar();
    {
        struct termios termios;
        ioctl(STDIN_FILENO, TCGETS, &termios);
        termios.c_lflag |= ICANON | ECHO;
        ioctl(STDIN_FILENO, TCSETS, &termios);
    }
    putchar('\n');
    return 0;
}
$ gcc -Wall -O3 -o pause pause.c $(pkg-config --cflags --libs ncurses)
$ ls
pause  pause.c
$ ./pause
Press any key to continue...
$ ./pause
Press any key to continue...
$ ./pause
Press any key to continue...
$ ./pause
Press any key to continue...
$ cp pause ~/bin
$ cd ~/tmp
$ cat main.py
#!/usr/bin/env python
#coding=utf-8

import os

print('hello world!')
os.system('pause')
print('hello world!')
$ ./main.py
hello world!
Press any key to continue...
hello world!
$ ./main.py
hello world!
Press any key to continue...
hello world!
$ ./main.py
hello world!
Press any key to continue...
hello world!
$
$
$
$ ./main.py
hello world!
Press any key to continue...
hello world!
$

1.gif
2.gif
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 10:48:47 | 显示全部楼层
奇怪,编译命令怎么没有改过来
gcc -Wall -O3 -o pause pause.c
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-5-23 11:07:47 | 显示全部楼层
豆嘉木 发表于 2022-5-23 10:35
因为在Linux的shell里pause不是一条命令,所以你这么写肯定是不对的
有帮助的话给个最佳答案谢了!!!{:1 ...


这是C+的处理方法,我想要的是python的。用input('按任意键继续')可以模拟暂停效果。除了这个还有其他方法吗??大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 11:13:55 | 显示全部楼层
kerln888 发表于 2022-5-23 11:07
这是C+的处理方法,我想要的是python的。用input('按任意键继续')可以模拟暂停效果。除了这个还有其他 ...

你写一个pause命令不就可以了
管你用什么语言写,你用python写一个pause命令

你是要解决这个问题,你还要求用什么语言来解决吗?

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-5-23 11:14:10 | 显示全部楼层
人造人 发表于 2022-5-23 10:48
奇怪,编译命令怎么没有改过来

这是C+的处理方法吧,我想要的是python的。用input('按任意键继续')可以模拟暂停效果。除了这个还有其他方法吗??大神
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 11:14:46 | 显示全部楼层
kerln888 发表于 2022-5-23 11:07
这是C+的处理方法,我想要的是python的。用input('按任意键继续')可以模拟暂停效果。除了这个还有其他 ...

嗯,看错人了,抱歉
^_^
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 11:15:21 | 显示全部楼层
kerln888 发表于 2022-5-23 11:14
这是C+的处理方法吧,我想要的是python的。用input('按任意键继续')可以模拟暂停效果。除了这个还有其他 ...

好吧,没有看错

你写一个pause命令不就可以了
管你用什么语言写,你用python写一个pause命令

你是要解决这个问题,你还要求用什么语言来解决吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 11:28:14 | 显示全部楼层
kerln888 发表于 2022-5-23 11:07
这是C+的处理方法,我想要的是python的。用input('按任意键继续')可以模拟暂停效果。除了这个还有其他 ...


这里有python的pause包,你去下载:https://www.cnpython.com/pypi/pause
别忘了最佳答案哈哈哈
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 11:40:45 | 显示全部楼层
原理都一样,要学会举一反三
#!/usr/bin/env python
#coding=utf-8

import termios
import sys

tios = termios.tcgetattr(sys.stdin.fileno())
tios[3] &= ~(termios.ICANON | termios.ECHO)
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, tios)

print('Press any key to continue...', end = '', flush = True)
sys.stdin.read(1)
print()

tios = termios.tcgetattr(sys.stdin.fileno())
tios[3] |= termios.ICANON | termios.ECHO
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, tios)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-5-23 11:43:37 | 显示全部楼层    本楼为最佳答案   
#!/usr/bin/env python
#coding=utf-8

import termios
import sys

tios = termios.tcgetattr(sys.stdin.fileno())
tios[3] &= ~(termios.ICANON | termios.ECHO)
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, tios)

print('Press any key to continue...', end = '', flush = True)
sys.stdin.read(1)
print('', flush = True)

tios = termios.tcgetattr(sys.stdin.fileno())
tios[3] |= termios.ICANON | termios.ECHO
termios.tcsetattr(sys.stdin.fileno(), termios.TCSANOW, tios)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-18 03:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表