Skip to content

Paste.lol Unofficial Command Line Interface (CLI)

License

Notifications You must be signed in to change notification settings

M1n-74316D65/Pastol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pastol is paste.lol Unofficial Command Line Interface (CLI)

HERE you can check the repo.

Pastol enables users to interact with paste.lol service directly from the command line.
Allows you to share text and files quickly and conveniently.

Usage

pastol <COMMAND>

Commands:

add       Create or update a pastebin on paste.lol
remove    || rm - Remove a pastebin on paste.lol
download  || dl - Download by title a pastebin
list      || ls - List all pastebins
view      || cat - View by title the pastebin
search    || find - Search by title for pastebins
settings  || config - Change the settings
help      Print this message or the help of the given subcommand(s)

Install

  1. Install rust and cargo.

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  2. Install pastol.

    • With binstall (better)

      1. Install binstall

        Linux and macOS

        curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
        

        Windows

        Set-ExecutionPolicy Unrestricted -Scope Process; iex (iwr "https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.ps1").Content
        
      2. Install pastol

        cargo binstall pastol
    • Without binstall

      1. If on Linux or maybe macOS(feedback needed):

        • macOS (Homebrew)

          brew install openssl@3
        • macOS (MacPorts)

          sudo port install openssl
        • Arch Linux

          sudo pacman -S pkg-config openssl
        • Debian and Ubuntu

          sudo apt-get install pkg-config libssl-dev
        • Fedora

          sudo dnf install pkg-config perl-FindBin openssl-devel
        • Alpine Linux

          apk add pkgconfig openssl-dev
        • openSUSE

          sudo zypper in libopenssl-devel
      2. Install the crate.

      cargo install pastol

Setup

  1. Set user and API key.

    pastol --setuser your_username --setapikey your_api_key
    
    # if the env var api_omg_lol is set it will be used instead
  2. Exampe as adam.

    pastel --setuser adam --setapikey a321dwageaawdwadw

    Your API key is stored locally in the config file. Linux example path:

    .config/pastol/config.toml
  • OPTIONAL: Set all the new or updated pastebin to unlisted/hidden.
    pastol --setunlist true

Examples

  • Upload a file.

    pastol example.txt
  • Download a pastebin as a file.

    pastol download example-title-as-apears-on-the-url
  • Upload a file with custom title.

    pastol add example.txt -t "Example Title"
  • Upload a file with custom content.

    pastol add example.txt -c "This is the content of the example file."
  • Upload a custom.

    pastol add -t title-example -c "pastebin content example"
  • Remove a pastebin.

    pastol remove hello-world
  • List all listed pastebins.

    pastol list
  • View the pastebin.

    pastol view example
  • Search by title for pastebins.

    pastol search exa

Build

  1. Install cargo

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  2. Clone the repo

    git clone https://github.com/M1n-74316D65/Pastol
  3. If on Linux install or maybe macos():

    • macOS (Homebrew)

      brew install openssl@3
    • macOS (MacPorts)

      sudo port install openssl
    • Arch Linux

      sudo pacman -S pkg-config openssl
    • Debian and Ubuntu

      sudo apt-get install pkg-config libssl-dev
    • Fedora

      sudo dnf install pkg-config perl-FindBin openssl-devel
    • Alpine Linux

      apk add pkgconfig openssl-dev
    • openSUSE

      sudo zypper in libopenssl-devel
  4. Build

    • Using just. (use this pls)
      1. Install just if not installed
      2. check the justfile to see available commands.
    • Using cargo
      1. cargo build
      2. This is the path of the pastol executable:
        ./target/debug/pastol

For more info check the justfile or use just.