TranslateProject/sources/tech/20180629 SoCLI - Easy Way To Search And Browse Stack Overflow From The Terminal.md

6.9 KiB
Raw Blame History

SoCLI Easy Way To Search And Browse Stack Overflow From The Terminal

Stack Overflow is the largest, most trusted online community for developers to learn, share their programming knowledge, and build their careers. Its worlds largest developer community and allows users to ask and answer questions. Its open alternative to earlier question and answer sites such as Experts-Exchange.

Its my preferred website, i have learned many program stuffs also i found many Linux related stuffs as well. Even i asked many questions and answered few questions too when i have time.

Today i have stumbled upon good CLI utility called SoCLI & how2 both are used to browse stackoverflow website from the terminal easily and its very helpful when you doesnt have GUI. Today we are going to discuss about SoCLI and will discuss about how2 in upcoming article.

Suggested Read : (#) How To Search The Arch Wiki Website Right From Terminal (#) Googler Google Search from the command line on Linux (#) Buku A Powerful Command-line Bookmark Manager for Linux

This might have very useful for NIX guys, whoever spending most of the time in CLI.

SoCLI is a Stack overflow command line interface written in python. Its allows you to search and browse stack overflow from the terminal.

SoCLI Featues:

  • Verity of search is available like Quick Search, Manual Search & interactive Search
  • Coloured interface
  • Question stats view
  • Topic Based Search using tag
  • Can view user profiles
  • Can create a new question via the web browser
  • Can open the page in a browser

How to Install Python

Make sure your system should have python-pip package in order to install SoCLI. pip is a python module bundled with setuptools, its one of the recommended tool for installing Python packages in Linux.

For Debian/Ubuntu , use apt-get command or apt command to install pip.

$ sudo apt install python-pip

For RHEL/CentOS , use YUM command to install pip.

$ sudo yum install python-pip python-devel

For Fedora , use dnf command to install pip.

$ sudo dnf install python-pip

For Arch Linux , use pacman command to install pip.

$ sudo pacman -S python-pip

For openSUSE , use Zypper Command to install pip.

$ sudo pacman -S python-pip

How to Install SoCLI

Simple use pip command to install socli.

$ sudo pip install socli

How to Update SoCLI

Run the following command to update your existing version of socli to the newest version to avail latest features.

$ sudo pip install --upgrade socli

How to Use SoCLI

Simple fire the socli command on terminal to start explorer stackoverflow from the Linux command line. Its offering varies arguments which will speedup your search even more faster.

Common syntax for SoCLI

socli [Arguments] [Search Query]

The following command will search for the given query command to check apache active connections and displays the first most voted question in Stack Overflow with its most voted answer.

$ socli command to check apache active connections

To enable interactive search, use -iq arguments followed by your search query.

The following command will search for the given query delete matching string and print a list of questions from Stack Overflow.

$ socli -iq delete matching string

It will allows users to choose any of the questions interactively by hitting questing number in end of the results. In my case i have choose a question 2 then it will display the complete description of the chosen question with its most voted answer.

Use UP and DOWN arrow keys to navigate to other answers. Press LEFT arrow key to go back to the list of questions.

SoCLI allows you to display mentioned question number for given query. The following command will search for the given query netstat command examples in Stack Overflow and displays the second question full information for given query alike quick search.

$ socli -r 2 -q netstat command examples

SoCLI allows topic based search by using specific tags. Just mention the specific tags using -t arguments and followed by search query command to increase jvm heap memory.

$ socli -t linux -q command to increase jvm heap memory

For multiple tags, Just separate them with a comma.

$ socli -t linux,unix -q grep

Post a New Question

If you cant find an answer for your question in Stack Overflow? dont worry, post a new question by running following command.

$ socli -n

It will open the new question page of Stack Overflow in the web browser for you to create a new question.

Man Page

To know more options & arguments about SoCLI, navigate to help section.

$ socli -h


via: https://www.2daygeek.com/socli-search-and-browse-stack-overflow-from-linux-terminal/

作者:Magesh Maruthamuthu 选题:lujun9972 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出