Emojiterm: Difference between revisions

From Hackers & Designers
(Created page with "Here you'll be given a quick Terminal tutorial outlining some introduction commands and inputs to give you a better grasp on the command line. Following the instructions belo...")
 
No edit summary
Line 5: Line 5:
The traditional Unix commands have been translated into emoji in order to call to question the arbitrary English based command naming conventions, being replaced with the pictographic language of emoji.
The traditional Unix commands have been translated into emoji in order to call to question the arbitrary English based command naming conventions, being replaced with the pictographic language of emoji.


You will need to download a [https://github.com//hackersanddesigners bash script] and execute it to make the emoji commands available.
You will need to download a bash [https://github.com//hackersanddesigners script] and execute it to make the emoji commands available. Instructions on how to do this below.
 
Each $ is a new line to paste in the terminal.  DO NOT COPY THE $.
 
== Who am i ==
 
On Unix based systems like Linux or Mac OS, you are a user 🙋.  To find out who you are you can always ask!
 
    $ 🙋
 
== Where am i? ==
 
Directories are folders 📁.  When you open the terminal you are in your home 🏠 folder or directory.  If you get lost you can ask!
 
    $ 🤔
 
== What is in 📁? ==
 
You can see the contents of a 📁 by listing them.
 
    $ 📃
 
== Navigating to a new 📁 ==
 
Think of 📁 as a tree 🌲.  You can climb up and down the 🌲.
 
To go in a 📁 up the tree.
 
  $ 📁 Documents
 
To go down the tree.
 
  $ 👇
 
== Making a new 📁 ==
 
  $ ✨📁 🌞
 
== Putting some stuff together ==
 
  $ 📁 🌞
  $ 🤔
  $ 👇
  $ 🤔
 
== Creating files 📝 ==
 
Let's create 📝 in 📁 🌞.
 
  $ 📁 🌞
 
You can create an empty file by touching 👈 it and naming it.
 
  $ 👈 🌏
 
Was the 🌏 📝 created?  List the contents of 🌞.
 
  $ 📃
 
Let's add some 👯 to 🌏.  You can do this by simply echoing 📣 👯, and directing it into 🌏.
 
  $ 📣 👯 > 🌏
 
To see if 🌏 now has 👯, you have to ask the cat 😺.
 
  $ 😺 🌏
 
Let's make a second earth, see if it's created and then delete it.
 
  $ 👈 🌎
  $ 📃
  $ ❌ 🌎

Revision as of 10:56, 10 September 2017

Here you'll be given a quick Terminal tutorial outlining some introduction commands and inputs to give you a better grasp on the command line.

Following the instructions below in order will give you a step-by-step instruction that should get you up to speed with the basics of using the Terminal.

The traditional Unix commands have been translated into emoji in order to call to question the arbitrary English based command naming conventions, being replaced with the pictographic language of emoji.

You will need to download a bash script and execute it to make the emoji commands available. Instructions on how to do this below.

Each $ is a new line to paste in the terminal. DO NOT COPY THE $.

Who am i

On Unix based systems like Linux or Mac OS, you are a user 🙋. To find out who you are you can always ask!

   $ 🙋

Where am i?

Directories are folders 📁. When you open the terminal you are in your home 🏠 folder or directory. If you get lost you can ask!

   $ 🤔

What is in 📁?

You can see the contents of a 📁 by listing them.

   $ 📃

Navigating to a new 📁

Think of 📁 as a tree 🌲. You can climb up and down the 🌲.

To go in a 📁 up the tree.

  $ 📁 Documents

To go down the tree.

  $ 👇

Making a new 📁

  $ ✨📁 🌞

Putting some stuff together

  $ 📁 🌞
  $ 🤔
  $ 👇
  $ 🤔

Creating files 📝

Let's create 📝 in 📁 🌞.

 $ 📁 🌞

You can create an empty file by touching 👈 it and naming it.

  $ 👈 🌏

Was the 🌏 📝 created? List the contents of 🌞.

  $ 📃

Let's add some 👯 to 🌏. You can do this by simply echoing 📣 👯, and directing it into 🌏.

  $ 📣 👯 > 🌏

To see if 🌏 now has 👯, you have to ask the cat 😺.

  $ 😺 🌏

Let's make a second earth, see if it's created and then delete it.

  $ 👈 🌎
  $ 📃
  $ ❌ 🌎