{"id":76,"date":"2016-07-29T04:59:57","date_gmt":"2016-07-29T04:59:57","guid":{"rendered":"http:\/\/wizardofbots.com\/network\/?p=76"},"modified":"2016-07-29T05:06:00","modified_gmt":"2016-07-29T05:06:00","slug":"bash-script-to-install-bitchx-really-quick","status":"publish","type":"post","link":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/","title":{"rendered":"Bash script to install BitchX really quick"},"content":{"rendered":"<p>Tonight I was watching Mr. Robot chapter 4, season 2. And it remind me back the good old days where the IRC was above any other social network. People meet there in tons of channels to have chats and discussions. Also there were plenty of groups talking about many stuff, the best crews were the ones with coders.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif\" width=\"500\" height=\"322\" \/><\/p>\n<p>So well, what do I like about IRC?, There were plenty of cool things back then in 1995, there were the amazing eggdrops that you programmed to respond to different messages. They also had TCL&#8217;s which mean addons\/plugins that you could adapt to your bot, many were different cool games in group. Also there were PsyBNCs to be always online with your shell.<\/p>\n<p>To run this just do the following:<\/p>\n<blockquote><p>mkdir bitchx<br \/>\nnano install_bitchx.sh<\/p><\/blockquote>\n<p>And then just paste this code:<\/p>\n<pre class=\"lang:sh decode:true \">#!\/bin\/sh\r\n####################################################################################\r\n#\r\n# Download Compile and Install BitchX on Ubuntu\r\n#\r\n####################################################################################\r\n\r\n# download bitchx source\r\n\r\n# @todo make smarter, i.e. regexp, though now uses _always_ available commands (sic)\r\nDOWNLOAD_URL=$(curl -s http:\/\/bitchx.sourceforge.net |\\\r\n        grep \"http:\/\/sourceforge.net\" |\\\r\n         sed -e \"s|.*href=\\\"||g\" |\\\r\n         sed -e \"s|\\\".*||g\" |\\\r\n         grep \"\/download\" | uniq) # should only be one\r\n\r\nif [ \"${DOWNLOAD_URL}\" = \"\" ]; then\r\n  echo \"ERROR: Could not find DOWNLOAD_URL from http:\/\/bitchx.sourceforge.net\"\r\n  exit 255;\r\nfi\r\n\r\n# @todo make smarter, i.e. regexp, though now uses _always_ available commands (sic)\r\nVERSION=$(echo ${DOWNLOAD_URL} | sed -e \"s|.*ircii-pana\/bitchx-||g\" | sed -e \"s|\\\/.*||g\")\r\n\r\nif [ \"${VERSION}\" = \"\" ]; then\r\n  echo \"ERROR: Could not find VERSION from ${DOWNLOAD_URL}\"\r\n  exit 255;\r\nfi\r\n\r\necho \"Will try to download and install version ${VERSION}\";\r\n\r\nDOWNLOAD_URL=http:\/\/downloads.sourceforge.net\/project\/bitchx\/ircii-pana\/bitchx-${VERSION}\/bitchx-${VERSION}.tar.gz\r\n\r\necho \"Downloading: ${DOWNLOAD_URL}\"\r\ncurl -L -s \"${DOWNLOAD_URL}\" -o bitchx-${VERSION}.tar.gz\r\n\r\n# install required dev libraries\r\nsudo apt-get install libssl-dev ncurses-dev\r\n\r\n# unpack source\r\ntar -xzf bitchx-${VERSION}.tar.gz\r\n\r\n# go to source dir\r\ncd bitchx-${VERSION}\r\n\r\n# configure\r\n.\/configure --prefix=\/usr --with-ssl --with-plugins --enable-ipv6\r\n\r\n# build\r\nmake\r\n\r\n# install (change to \"make install_local\" for local installation; in your own $HOME)\r\nsudo make install\r\n\r\n# remove src + build\r\ncd $OLDPWD &amp;&amp; rm -rf bitchx-${VERSION}*\r\n\r\n# done use \"BitchX\" to run...<\/pre>\n<p>Then you just have to:<\/p>\n<blockquote><p>chmod +x install_bitchx.sh<br \/>\n.\/install_bitchx.sh<\/p><\/blockquote>\n<p>And this will begin to install everything you need to run BitchX, then just type to run:<\/p>\n<blockquote><p>BitchX<\/p><\/blockquote>\n<p>By the way, did you know you can connect to Elliot&#8217;s IRC session using this page:\u00a0<a href=\"http:\/\/irc.colo-solutions.net\/\" target=\"_blank\">http:\/\/irc.colo-solutions.net\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tonight I was watching Mr. Robot chapter 4, season 2. And it remind me back the good old days where the IRC was above any other social network. People meet there in tons of channels to have chats and discussions. Also there were plenty of groups talking about many stuff, the best crews were the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"footnotes":""},"categories":[29,15],"tags":[16,41,26,42,43],"class_list":["post-76","post","type-post","status-publish","format-standard","hentry","category-bash","category-linux","tag-bash","tag-bitchx","tag-code","tag-irc","tag-shell"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Bash script to install BitchX really quick - Wizard Of Bots<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bash script to install BitchX really quick - Wizard Of Bots\" \/>\n<meta property=\"og:description\" content=\"Tonight I was watching Mr. Robot chapter 4, season 2. And it remind me back the good old days where the IRC was above any other social network. People meet there in tons of channels to have chats and discussions. Also there were plenty of groups talking about many stuff, the best crews were the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/\" \/>\n<meta property=\"og:site_name\" content=\"Wizard Of Bots\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-29T04:59:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-07-29T05:06:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif\" \/>\n<meta name=\"author\" content=\"wizardofbots\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"wizardofbots\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/\",\"url\":\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/\",\"name\":\"Bash script to install BitchX really quick - Wizard Of Bots\",\"isPartOf\":{\"@id\":\"http:\/\/wizardofbots.com\/network\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif\",\"datePublished\":\"2016-07-29T04:59:57+00:00\",\"dateModified\":\"2016-07-29T05:06:00+00:00\",\"author\":{\"@id\":\"http:\/\/wizardofbots.com\/network\/#\/schema\/person\/31f9e486da1c11791d94a861854a2a9f\"},\"breadcrumb\":{\"@id\":\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#primaryimage\",\"url\":\"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif\",\"contentUrl\":\"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/wizardofbots.com\/network\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bash script to install BitchX really quick\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/wizardofbots.com\/network\/#website\",\"url\":\"http:\/\/wizardofbots.com\/network\/\",\"name\":\"Wizard Of Bots\",\"description\":\"Botting and AI community\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/wizardofbots.com\/network\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"http:\/\/wizardofbots.com\/network\/#\/schema\/person\/31f9e486da1c11791d94a861854a2a9f\",\"name\":\"wizardofbots\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/wizardofbots.com\/network\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/2.gravatar.com\/avatar\/584eebc303f64610559ab9f305f6928d?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/2.gravatar.com\/avatar\/584eebc303f64610559ab9f305f6928d?s=96&d=mm&r=g\",\"caption\":\"wizardofbots\"},\"url\":\"http:\/\/wizardofbots.com\/network\/author\/wizardofbots\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Bash script to install BitchX really quick - Wizard Of Bots","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/","og_locale":"en_US","og_type":"article","og_title":"Bash script to install BitchX really quick - Wizard Of Bots","og_description":"Tonight I was watching Mr. Robot chapter 4, season 2. And it remind me back the good old days where the IRC was above any other social network. People meet there in tons of channels to have chats and discussions. Also there were plenty of groups talking about many stuff, the best crews were the [&hellip;]","og_url":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/","og_site_name":"Wizard Of Bots","article_published_time":"2016-07-29T04:59:57+00:00","article_modified_time":"2016-07-29T05:06:00+00:00","og_image":[{"url":"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif"}],"author":"wizardofbots","twitter_card":"summary_large_image","twitter_misc":{"Written by":"wizardofbots","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/","url":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/","name":"Bash script to install BitchX really quick - Wizard Of Bots","isPartOf":{"@id":"http:\/\/wizardofbots.com\/network\/#website"},"primaryImageOfPage":{"@id":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#primaryimage"},"image":{"@id":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#primaryimage"},"thumbnailUrl":"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif","datePublished":"2016-07-29T04:59:57+00:00","dateModified":"2016-07-29T05:06:00+00:00","author":{"@id":"http:\/\/wizardofbots.com\/network\/#\/schema\/person\/31f9e486da1c11791d94a861854a2a9f"},"breadcrumb":{"@id":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#primaryimage","url":"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif","contentUrl":"https:\/\/66.media.tumblr.com\/d460a43a047353153e986f9cd42d5c8a\/tumblr_ob0yabc4pV1ua7xn8o1_500.gif"},{"@type":"BreadcrumbList","@id":"http:\/\/wizardofbots.com\/network\/bash-script-to-install-bitchx-really-quick\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/wizardofbots.com\/network\/"},{"@type":"ListItem","position":2,"name":"Bash script to install BitchX really quick"}]},{"@type":"WebSite","@id":"http:\/\/wizardofbots.com\/network\/#website","url":"http:\/\/wizardofbots.com\/network\/","name":"Wizard Of Bots","description":"Botting and AI community","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/wizardofbots.com\/network\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"http:\/\/wizardofbots.com\/network\/#\/schema\/person\/31f9e486da1c11791d94a861854a2a9f","name":"wizardofbots","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/wizardofbots.com\/network\/#\/schema\/person\/image\/","url":"http:\/\/2.gravatar.com\/avatar\/584eebc303f64610559ab9f305f6928d?s=96&d=mm&r=g","contentUrl":"http:\/\/2.gravatar.com\/avatar\/584eebc303f64610559ab9f305f6928d?s=96&d=mm&r=g","caption":"wizardofbots"},"url":"http:\/\/wizardofbots.com\/network\/author\/wizardofbots\/"}]}},"_links":{"self":[{"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/posts\/76"}],"collection":[{"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/comments?post=76"}],"version-history":[{"count":4,"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/posts\/76\/revisions"}],"predecessor-version":[{"id":80,"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/posts\/76\/revisions\/80"}],"wp:attachment":[{"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/media?parent=76"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/categories?post=76"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/wizardofbots.com\/network\/wp-json\/wp\/v2\/tags?post=76"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}