Skip to content

Month: November 2013

Jeep Wrangler ASCII Art Collection

Some ASCII/ANSI/Shift_JIS/Unicode art of Jeep Wranglers. They are easy to modify and introduce your own customizations.

These I found on the web:

  __________ 
 |          | 
 |______(*)_| 
 /\__----__/\ 
/_/()||||()\_\ 
|_\ o||||o /_| 
|----Jeep----| 
|_|        |_| 


                   _.------------------.
                 .'____________________|
                 //    _||||  | |  | | |
          ______//_\__j_|||"--" "--" | |  _
         /-----+-|p  ==,|||__________|_|-|W|
        _j,====. |b_____|||  _____     | |W|
       |_) ,---.`.`------'|.',---.`.___|_|W|
         `/ .-. \\`======__// .-. \`-----'""
          \ `-' / """""""   \ `-' /
           `---'             `---'     hjw

  ____        
 /_/CL\___     
 \_,.__,._)    
---`'--`'--MK  
  ____
 |_| L\___
 |_,.__,._)
---`'--`'--MK

/l ,[____],
l---L -O||||||O-
()_)-()_)-o-)_)

    ______ooooo
  /__|_|_,\____\,___
  |_---|_|__|---O|||O
_.(o)_)__(o)_)--o-)_) 

               ∩_∩
        // ̄ヽ_( ・(ェ)・)  ____
       | ̄ ̄|_ (⊃/ ̄ ̄ ̄(O|||||O)
 .⌒ヽ ,;;; | / ̄ヽ ||___|// ̄ヽ ̄| |||||/ヽ
 (";"':;.):;゙ |_| ◎ |___ | ◎ .| |=======
   ⌒;:ヽ;; ヽ_//     ヽ_// ヽ_//
~~~~´゙`゙゙´´ ~~~~゙`゙´``´゙`゙゙´´ ~~゙゙´``´`´ ~~~


,[____l,
_-o||||o-_
()_)¯¯ )_)

O|||||||O

•IIIIII•

This one I created:

 
 â—„
  ╽██████████████       
  ▓█ ██ █✌ຈل͜ຈ █▄▄▄▄▄
  ▓█████████████⚪║║║║⚪█ 
  ═█▓▓██████▓▓▀████ºº███▀
    â–“â–“ â–“â–“   â–“â–“       â–“â–“

This one is a remix of one from hjw (Hayley Jane Wakenshaw) with an extra door, i.e. the Jeep Wrangler Unlimited.


                   _.---------------------.
                 .'_______________________|
                 //    _|||    || |   | | |
          ______//_\__j_|||____|| "---" | |  _
         /-----+-|p  ==,|||p ==,|_______|_|-|W|
        _j,====. |b_____|||b    /_____    | |W|
       |_) ,---.`.`------'|----.',---.`.__|_|W|
         `/ .-. \\`======__====// .-. \`---'""
          \ `-' / """""""  """" \ `-' /
           `---'                 `---'  

A remix of this post from @TwitAA_bot:

  __________ ⌒彡
 |          |冫、)
 |__________|` /
 /\__----__/\ /
/_/()||||()\_\
|_\ o||||o /_|
|------------|
|_|        |_|

Sources:

if host pings execute command

[bash]#!/bin/sh
HOST="silveiraneto.net"
if ping -c 1 $HOST > /dev/null
then
echo your command
fi
[/bash]

  • replace silveiraneto.net for your desired hostname or ip
  • ping sends only one package (-c 1) and ignores the text output
  • a ping is successful returns 0 and the if proceeds
  • replace the echo line with your command