目次
Install Snake Game in Linux
Option 1: Play Without Downloading/Installing
Option 2: Download and Install
Launch Snake Game
How to Play TUI Snake Game in Linux Terminal?
Conclusion
ホームページ システムチュートリアル Linux Linuxターミナルでクラシックスネークゲームをプレイする方法

Linuxターミナルでクラシックスネークゲームをプレイする方法

Mar 22, 2025 am 10:13 AM

Snake is a classic game that has been enjoyed by people of all ages for decades. This simple game is easy to learn but difficult to master, making it a challenge that players of all skill levels can enjoy.

In Snake, the player controls a snake that must eat apples to grow longer. The snake gets longer as it eats apples, and it dies if it runs into itself or the edge of the screen. The goal of the game is to score as many points as possible by eating as many apples as possible.

I used to play this game on an old Nokia phone many years ago. I thought this game was only for phones until today. But I was pleasantly surprised when I found a Snake game made with BASH for the terminal.

Yes! In this brief guide, we are going to discuss about an incredibly simple TUI Snake game created using pure BASH v5.1+ code.

It is a text-based, classic Snake game written in pure Bash. It is a super minimal game with no graphics or sound, but it is still fun to play. The game is available for free on GitHub!

Table of Contents

Install Snake Game in Linux

You can directly play the Snake game or install it on your Linux system. It should work on any Linux distribution that has BASH.

Option 1: Play Without Downloading/Installing

You can play the Snake game directly without downloading or installing by using the following command in your terminal:

$ bash <(curl -s https://raw.githubusercontent.com/wick3dr0se/snake/main/snake)
ログイン後にコピー

Option 2: Download and Install

If you prefer to download and install the game, follow these steps:

1. Download the game by running the following command in your terminal:

$ git clone https://github.com/wick3dr0se/snake
ログイン後にコピー

2. Once downloaded, navigate into the game's directory:

$ cd snake
ログイン後にコピー

3. If you'd like to make the game executable from anywhere, you can install it to your $PATH with this command:

$ sudo cp snake /usr/local/bin
ログイン後にコピー

Launch Snake Game

To launch the Snake game, follow these steps:

1. If you have installed the game to your $PATH, simply type snake in your terminal and press Enter.

OR

2. If you haven't installed the game to your $PATH, navigate to the directory where the game is located. If you are in the same directory as the game, type ./snake and press Enter.

OR

3. If you prefer, you can also use the command bash snake to launch the game from the directory where it is located.

How to Play TUI Snake Game in Linux Terminal?

To play the game, you can control the snake using the arrow keys. Additionally, you can use the following key combinations:

  • H or A: Move left
  • J or S: Move down
  • K or W: Move up
  • L or D: Move right

If you want to quit the game, simply press the Q key. If you press any other key, the game will pause.

Linuxターミナルでクラシックスネークゲームをプレイする方法

Conclusion

The Snake game offers a nostalgic experience with a twist. It's easy to play and enjoy, even without fancy graphics or sounds. Whether you're reliving the past or trying it for the first time, this game brings a fun challenge right to your terminal.

If you're looking for an interesting and addictive game that you can play on a Linux system, then Snake is the perfect game for you. So what are you waiting for? Give it a try today!

Resource:

  • Snake Game GitHub Repository

Similar Read:

  • Play 2048 Game In Terminal
  • Terminal Phase – A Space Shooter Game That Runs In Terminal
  • A Collection Of Puzzle Games To Make Your Free Time Better

以上がLinuxターミナルでクラシックスネークゲームをプレイする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

Video Face Swap

Video Face Swap

完全無料の AI 顔交換ツールを使用して、あらゆるビデオの顔を簡単に交換できます。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)

Linuxは何に最適なものですか? Linuxは何に最適なものですか? Apr 03, 2025 am 12:11 AM

Linuxは、サーバー管理、組み込みシステム、デスクトップ環境として最適です。 1)サーバー管理では、LinuxはWebサイト、データベース、アプリケーションをホストするために使用され、安定性と信頼性を提供します。 2)組み込みシステムでは、Linuxは柔軟性と安定性のため、スマートホームおよび自動車電子システムで広く使用されています。 3)デスクトップ環境では、Linuxは豊富なアプリケーションと効率的なパフォーマンスを提供します。

Linuxの5つの基本コンポーネントは何ですか? Linuxの5つの基本コンポーネントは何ですか? Apr 06, 2025 am 12:05 AM

Linuxの5つの基本コンポーネントは次のとおりです。1。カーネル、ハードウェアリソースの管理。 2。機能とサービスを提供するシステムライブラリ。 3.シェル、ユーザーがシステムと対話するインターフェイス。 4.ファイルシステム、データの保存と整理。 5。アプリケーション、システムリソースを使用して機能を実装します。

基本的なLinux管理とは何ですか? 基本的なLinux管理とは何ですか? Apr 02, 2025 pm 02:09 PM

Linuxシステム管理により、構成、監視、メンテナンスを通じて、システムの安定性、効率、セキュリティが保証されます。 1。TOPやSystemCtlなどのマスターシェルコマンド。 2. APTまたはYUMを使用して、ソフトウェアパッケージを管理します。 3.効率を向上させるための自動スクリプトを書きます。 4.許可問題などの一般的なデバッグエラー。 5.監視ツールを介してパフォーマンスを最適化します。

Linuxの基本を学ぶ方法は? Linuxの基本を学ぶ方法は? Apr 10, 2025 am 09:32 AM

基本的なLinux学習の方法は次のとおりです。1。ファイルシステムとコマンドラインインターフェイス、2。LS、CD、MKDIR、3。ファイルの作成と編集などのファイル操作を学習するマスター基本コマンド、4。

Linuxの最も使用は何ですか? Linuxの最も使用は何ですか? Apr 09, 2025 am 12:02 AM

Linuxは、サーバー、組み込みシステム、デスクトップ環境で広く使用されています。 1)サーバーフィールドでは、Linuxは、その安定性とセキュリティにより、Webサイト、データベース、アプリケーションをホストするための理想的な選択肢となっています。 2)埋め込みシステムでは、Linuxは高いカスタマイズと効率で人気があります。 3)デスクトップ環境では、Linuxはさまざまなユーザーのニーズを満たすために、さまざまなデスクトップ環境を提供します。

Linuxデバイスとは何ですか? Linuxデバイスとは何ですか? Apr 05, 2025 am 12:04 AM

Linuxデバイスは、サーバー、パーソナルコンピューター、スマートフォン、組み込みシステムなどのLinuxオペレーティングシステムを実行するハードウェアデバイスです。彼らはLinuxの力を利用して、Webサイトのホスティングやビッグデータ分析などのさまざまなタスクを実行します。

インターネットはLinuxで実行されますか? インターネットはLinuxで実行されますか? Apr 14, 2025 am 12:03 AM

インターネットは単一のオペレーティングシステムに依存していませんが、Linuxはその上で重要な役割を果たしています。 Linuxは、サーバーやネットワークデバイスで広く使用されており、安定性、セキュリティ、スケーラビリティに人気があります。

Linuxの欠点は何ですか? Linuxの欠点は何ですか? Apr 08, 2025 am 12:01 AM

Linuxの欠点には、ユーザーエクスペリエンス、ソフトウェア互換性、ハードウェアサポート、学習曲線が含まれます。 1.ユーザーエクスペリエンスは、WindowsやMacOほどフレンドリーではなく、コマンドラインインターフェイスに依存しています。 2。ソフトウェアの互換性は他のシステムほど良くなく、多くの商用ソフトウェアのネイティブバージョンがありません。 3.ハードウェアサポートはWindowsほど包括的ではなく、ドライバーは手動でコンパイルされる場合があります。 4.学習曲線は急で、コマンドラインの操作をマスターするには時間と忍耐が必要です。

See all articles