---
title: "tty中文乱码"
id: "3143"
type: "post"
slug: "tty%e4%b8%ad%e6%96%87%e4%b9%b1%e7%a0%81"
published_at: "2020-09-12T12:57:56+00:00"
modified_at: "2020-09-12T16:42:48+00:00"
url: "https://seq.ink/all/coding/3143.html"
markdown_url: "https://seq.ink/all/coding/3143.html.md"
excerpt: "在.bashrc 或 .zshrc 加一句 if test \"$(echo $TTY | grep tty)\" != \"\"; then export LANG=C ;fi 当bash在tty中运行时设置为英文"
taxonomy_category:
  - "Coding代码堆"
  - "Linux"
---

在.bashrc 或 .zshrc 加一句  
 `if test "$(echo $TTY | grep tty)" != ""; then export LANG=C ;fi`  
 当bash在tty中运行时设置为英文
