All Projects → Amine-Smahi → Sqlite Global Tool

Amine-Smahi / Sqlite Global Tool

Licence: mit
SQLite .NET Core CLI tool that allows the user to manually enter and execute SQL statements with or without showing query result.

Projects that are alternatives of or similar to Sqlite Global Tool

Initior
A command line application that let's you initialize your new projects the right way, replaces npm and yarn's init 🎆
Stars: ✭ 17 (-54.05%)
Mutual labels:  command-line-tool, cmd, cli, terminal
Covid19 Tracker Cli
A curl-based command line tracker for Novel Coronavirus or COVID-19 pandemic. It Supports terminal for linux and macos, command prompt for windows, and termux for android with real-time updates.
Stars: ✭ 244 (+559.46%)
Mutual labels:  command-line-tool, cmd, cli, terminal
Ed
A modern UNIX ed (line editor) clone written in Go
Stars: ✭ 44 (+18.92%)
Mutual labels:  command-line-tool, cli, terminal
Pyinquirer
A Python module for common interactive command line user interfaces
Stars: ✭ 1,151 (+3010.81%)
Mutual labels:  command-line-tool, cmd, cli
Tooling
Advancing Node.js as a framework for writing great tools
Stars: ✭ 98 (+164.86%)
Mutual labels:  command-line-tool, cli, terminal
Commander
Test your command line interfaces on windows, linux and osx and nodes viá ssh and docker
Stars: ✭ 183 (+394.59%)
Mutual labels:  cmd, cli, terminal
Sampler
Tool for shell commands execution, visualization and alerting. Configured with a simple YAML file.
Stars: ✭ 9,203 (+24772.97%)
Mutual labels:  command-line-tool, cmd, terminal
Terminal layout
The project help you to quickly build layouts in terminal,cross-platform(一个跨平台的命令行ui布局工具)
Stars: ✭ 98 (+164.86%)
Mutual labels:  command-line-tool, cmd, cli
Grex
A command-line tool and library for generating regular expressions from user-provided test cases
Stars: ✭ 4,847 (+13000%)
Mutual labels:  command-line-tool, cli, terminal
Zoxide
A smarter cd command. Supports all major shells.
Stars: ✭ 4,422 (+11851.35%)
Mutual labels:  command-line-tool, cli, terminal
Typin
Declarative framework for interactive CLI applications
Stars: ✭ 126 (+240.54%)
Mutual labels:  command-line-tool, cli, terminal
Tsukae
🧑‍💻📊 Show off your most used shell commands
Stars: ✭ 345 (+832.43%)
Mutual labels:  command-line-tool, cli, terminal
Sultan
Sultan: Command and Rule over your Shell
Stars: ✭ 625 (+1589.19%)
Mutual labels:  command-line-tool, cli, terminal
Radian
A 21 century R console
Stars: ✭ 878 (+2272.97%)
Mutual labels:  cli, terminal
Create Component App
Tool to generate different types of React components from the terminal. 💻
Stars: ✭ 879 (+2275.68%)
Mutual labels:  cli, terminal
Langterm
🕹️ WebGL-based VT220 emulator, made as a learning example and frontend for a text adventure
Stars: ✭ 35 (-5.41%)
Mutual labels:  cli, terminal
Moviescore
A cli tool to get movie ratings and reviews directly to your terminal!
Stars: ✭ 35 (-5.41%)
Mutual labels:  command-line-tool, cli
Curlie
The power of curl, the ease of use of httpie.
Stars: ✭ 877 (+2270.27%)
Mutual labels:  cli, terminal
Android dbinspector
Android library for viewing and sharing in app databases.
Stars: ✭ 881 (+2281.08%)
Mutual labels:  sqlite, sqlite3
Ecsctl
Command-line tool for managing AWS Elastic Container Service and Projects to run on it.
Stars: ✭ 15 (-59.46%)
Mutual labels:  command-line-tool, cli

Sqlite-Global-Tool

SQLite .NET Core global tool project that provides a simple command-line program that allows the user to manually enter and execute SQL statements with or without showing query results against an SQLite database.

What is .NET Core global tools

A .NET Core global tool is a special NuGet package that contains a console application. When installing a tool, .NET Core CLI will download and make your console tool available as a new command.

How to install it

The steps are very easy you only have to

  • Check if .NET Core sdk version 2.1 installed on your system, you can download it from Here then check if the instalation has gone correctly by typing

    user$ dotnet --version
    user$ 2.1.402
    
  • A single command allows you to download and install the tool

    user$ dotnet tool install --global sqlite-global-tool 
    
  • Add the tool to the enironement variable

Windows:

  setx PATH "$env:PATH;$env:USERPROFILE/.dotnet/tools"

Linux/macOS:

echo "export PATH=\"\$PATH:\$HOME/.dotnet/tools\"" >> ~/.bash_profile
  • Finaly run

    user$ sqlite-tool --h
    
  • Support me by making a for the repo and thank you :D , If you want to contribute to the project and make it better, your help is very welcome.

Screenshot

image

License

This project is under MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].