Skip to content

Commit 3115f97

Browse files
committed
agua-pescadora (#5), jogos (#14): adicionado pacotes de jogos de terminal; algns são muldiplayer, outros são relacionados a criptografia
1 parent 3d072cc commit 3115f97

File tree

3 files changed

+147
-2
lines changed

3 files changed

+147
-2
lines changed

logbook/aguia-pescadora.sh

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,3 +235,48 @@ sudo apt install emacs
235235
##
236236
###
237237
##### Editores de texto / Editores de código via terminal, inicio
238+
239+
##### Jogos de terminal, inicio
240+
####
241+
###
242+
##
243+
# @see https://www.ubuntupit.com/top-20-best-linux-terminal-console-games-that-you-can-play-right-now/
244+
245+
### bastet
246+
sudo apt-get install bastet
247+
248+
### BSD Games
249+
## see https://github.com/vattam/BSDGames
250+
sudo apt-get install bsdgames
251+
252+
### Dunnet (easter egg do Emacs)
253+
emacs -batch -l dunnet
254+
255+
### greed
256+
sudo apt-get install greed
257+
258+
### moon-buggy
259+
sudo apt-get install moon-buggy
260+
261+
### NetHack
262+
# @see https://www.nethack.org/
263+
sudo apt-get install nethack-console
264+
265+
### nsnake
266+
sudo apt-get install nsnake
267+
268+
### ninvaders
269+
sudo apt-get install ninvaders
270+
271+
### nudoku
272+
sudo apt-get install nudoku
273+
274+
### Tron (multiplayer, via SSH)
275+
# ssh sshtron.zachlatta.com
276+
277+
### zangband
278+
sudo apt-get install zangband
279+
280+
##
281+
###
282+
##### Jogos de terminal, fim

logbook/aguia-pescadora/usr/local/ajuda

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ export TERM=xterm-256color
33
blue=$( tput setaf 51 );
44
green=$( tput setaf 10 );
55
yellow=$( tput setaf 11 );
6-
normal=$( tput sgr 0);
7-
echo
6+
normal=$( tput sgr 0 );
87
echo "${green}
98
Comando 'ajuda' de aguia-pescadora.etica.ai
109
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
#!/bin/sh
2+
export TERM=xterm-256color
3+
blue=$( tput setaf 51 );
4+
green=$( tput setaf 10 );
5+
yellow=$( tput setaf 11 );
6+
normal=$( tput sgr 0 );
7+
echo "${green}
8+
Comando 'jogos' de aguia-pescadora.etica.ai
9+
10+
(Inspirado em https://www.ubuntupit.com/top-20-best-linux-terminal-console-games-that-you-can-play-right-now/)
11+
12+
JOGOS
13+
-----
14+
15+
Bastet
16+
${yellow}bastet${green}
17+
18+
Dunnet (easter egg do Emacs; tem guia na internet pra quem quer spoiler)
19+
${yellow}emacs -batch -l dunnet${green}
20+
21+
NetHack (https://www.nethack.org/)
22+
${yellow}nethack${green}
23+
24+
moon-buggy
25+
${yellow}moon-buggy${green}
26+
27+
nsnake
28+
${yellow}nsnake${green}
29+
30+
nudoku
31+
${yellow}nudoku${green}
32+
33+
ninvaders
34+
${yellow}ninvaders${green}
35+
36+
Tron (multiplayer, via SSH)
37+
${yellow}ssh sshtron.zachlatta.com${green}
38+
39+
zangband
40+
${yellow}zangband${green}
41+
42+
BSD Games (coleção de uns 40 jogos, veja pasta '/usr/games' )
43+
Documentação http://wiki.linuxquestions.org/wiki/Mille
44+
Código fonte: https://github.com/vattam/BSDGames
45+
46+
Para saber mais sobre cada item execute 'man JOGO'; por exemplo
47+
man caesar
48+
Afirma que ${yellow}caesar${green} procura desencriptar rot13 baseado em frequência
49+
de letras em inglês
50+
-------------------------------------------------------------
51+
${yellow}
52+
adventure: the original adventure by Crowther and Woods
53+
arithmetic: arithmetic quiz/speed test
54+
atc: air traffic control
55+
backgammon: backgammon
56+
banner: display a message in big letters
57+
battlestar: adventure game on a battlestar
58+
bcd: outputs text in an antique form
59+
boggle: boggle
60+
caesar: reads fortunes from the game fortune, also some internet posts
61+
canfield: curses-based solitaire
62+
countmail: tell you how much new mail you have
63+
cribbage: cribbage
64+
dab: dots and boxes
65+
dm: dungeon master, regulates games playing
66+
factor: factor a number
67+
fish: go fish
68+
fortune: displays a random silly message
69+
gomoku: gomoku
70+
hack: exploring the Dungeons of Doom
71+
hangman: guess the word before it is too late
72+
hunt: hunt each other in a maze (multiplayer -- great)
73+
mille: mille borne against the computer
74+
monop: monopoly
75+
morse: output morse code
76+
number: output the English text for a number
77+
phantasia: interterminal fantasy game
78+
pig: output text in Pig Latin
79+
pom: display the phase of the moon
80+
ppt: outputs text in another antique form
81+
primes: generate primes
82+
quiz: random knowledge tests
83+
rain: attempts to create a rain drop effect (best at 9600 baud)
84+
random: random lines from a file or random numbers
85+
robots: well... avoid the robots
86+
sail: sail your ship into battle
87+
snake: grab the cash and avoid the snake and exit
88+
tetris: tetris
89+
trek: We come in peace, shoot to kill. It's worse than that, he's
90+
dead Jim. Ye cannot change the laws of physics. It's life
91+
Jim, but not as we know it. There's Klingons on the starboard
92+
bow ...
93+
wargames: would you like to play a game?
94+
worm: eat the numbers without running into anything
95+
worms: random worms scurrying across your screen
96+
wtf: translate acronyms, e.g. 'wtf is WTF'
97+
wump: hunt the wumpus${green}
98+
99+
100+
101+
${normal}"

0 commit comments

Comments
 (0)