Open Source Unix Shell Terminals for Windows

Unix Shell Terminals for Windows

View 6 business solutions

Browse free open source Unix Shell Terminals for Windows and projects below. Use the toggles on the left to filter open source Unix Shell Terminals for Windows by OS, license, language, programming language, and project status.

  • Our Free Plans just got better! | Auth0 Icon
    Our Free Plans just got better! | Auth0

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
    Try free now
  • Picsart Enterprise Background Removal API for Stunning eCommerce Visuals Icon
    Picsart Enterprise Background Removal API for Stunning eCommerce Visuals

    Instantly remove the background from your images in just one click.

    With our Remove Background API tool, you can access the transformative capabilities of automation , which will allow you to turn any photo asset into compelling product imagery. With elevated visuals quality on your digital platforms, you can captivate your audience, and therefore achieve higher engagement and sales.
    Learn More
  • 1
    airgeddon

    airgeddon

    This is a multi-use bash script for Linux systems

    airgeddon is an alive project growing day by day. Interface mode switcher (Monitor-Managed) keeping selection even on interface name changing. DoS over wireless networks using different methods (mdk3, mdk4, aireplay-ng). "DoS Pursuit mode" is available to avoid AP channel hopping (available also on DoS performed on Evil Twin attacks). Full support for 2.4Ghz and 5Ghz bands. Assisted WPA/WPA2 personal networks Handshake file and PMKID capturing. Cleaning and optimizing Handshake captured files. Offline password decrypting on WPA/WPA2 captured files for personal networks (Handshakes and PMKIDs) using a dictionary, brute-force, and rule-based attacks with aircrack, crunch and hashcat tools. Enterprise networks captured password decrypting based on john the ripper, crunch, asleap and hashcat tools. GPU support available for hashcat. Only Rogue/Fake AP mode to sniff using external sniffer (Hostapd + DHCP + DoS).
    Downloads: 62 This Week
    Last Update:
    See Project
  • 2
    testssl.sh

    testssl.sh

    Testing TLS/SSL encryption anywhere on any port

    testssl.sh is a free command-line tool that checks a server's service on any port for the support of TLS/SSL ciphers, protocols as well as recent cryptographic flaws and more. testssl.sh is free and open-source software. You can use it under the terms of GPLv2, please review the License before using it. Works for Linux, Mac OSX, FreeBSD, NetBSD and WSL/MSYS2/Cygwin out of the box, no need to install or configure something, no gems, CPAN, pip or the like. OpenBSD only needs bash to be postinstalled. You can test any SSL/TLS enabled and STARTTLS service, not only webservers at port 443. Several command line options help you to run your test and configure your output. If a particular check cannot be performed because of a missing capability on your client side, you'll get a warning. You can look at the code, see what's going on and you can change it.
    Downloads: 11 This Week
    Last Update:
    See Project
  • 3
    Babashka

    Babashka

    Native, fast starting Clojure interpreter for scripting

    Avoid switching between Clojure and bash scripts. Enjoy your parens on the command line. Leveraging GraalVM native-image and the Small Clojure Interpreter, babashka is a self-contained and instantly starting scripting environment. Babashka comes with scripting batteries included: tools.cli, cheshire, babashka.fs, babashka.process, java.time and many more libraries and classes. Babashka scripts work on linux, macOS and Windows. Besides the built-in libraries, babashka is able to load libraries from source, tapping into the world of already existing Clojure libraries. Babashka supports real JVM threads and like Clojure, supports futures and dynamic thread-locally bound vars. Babashka features a built-in task runner which covers the most popular use cases of make, just and npm scripts. Babashka can shell out to other CLI programs like you are used to in bash. It goes one step further and offers seamless integration with other binaries using the pod protocol.
    Downloads: 8 This Week
    Last Update:
    See Project
  • 4
    Distrobox

    Distrobox

    Use any linux distribution inside your terminal

    Use any Linux distribution inside your terminal. Enable both backward and forward compatibility with software and freedom to use whatever distribution you’re more comfortable with. Distrobox uses podman, docker or lilipod to create containers using the Linux distribution of your choice. The created container will be tightly integrated with the host, allowing sharing of the HOME directory of the user, external storage, external USB devices and graphical apps (X11/Wayland), and audio. Simply put it's a fancy wrapper around podman, docker, or lilipod to create and start containers highly integrated with the hosts. The distrobox environment is based on an OCI image. This image is used to create a container that seamlessly integrates with the rest of the operating system by providing access to the user's home directory, the Wayland and X11 sockets, networking, removable devices (like USB sticks), systemd journal, SSH agent, D-Bus, ulimits, /dev and the udev database, etc.
    Downloads: 7 This Week
    Last Update:
    See Project
  • MongoDB 8.0 on Atlas | Run anywhere Icon
    MongoDB 8.0 on Atlas | Run anywhere

    Now available in even more cloud regions across AWS, Azure, and Google Cloud.

    MongoDB 8.0 brings enhanced performance and flexibility to Atlas—with expanded availability across 125+ regions globally. Build modern apps anywhere your users are, with the power of a modern database behind you.
    Learn More
  • 5
    SSVNC adds encryption security to VNC. It provides a GUI for Windows, MacOSX, and Unix that automatically starts up an SSL or SSH tunnel for connections to any VNC server. It also supports VeNCrypt encryption. The Unix viewer has many new features.
    Leader badge
    Downloads: 30 This Week
    Last Update:
    See Project
  • 6
    asdf

    asdf

    Extendable version manager with support for Ruby, Node.js, Elixir, etc

    Manage multiple runtime versions with a single CLI tool. Manage each of your project runtimes with a single CLI tool and command interface. asdf is a CLI tool that can manage multiple language runtime versions on a per-project basis. It is like gvm, nvm, rbenv & pyenv (and more) all in one! Simply install your language's plugin! Large ecosystem of existing runtimes & tools. Simple API to add support for new tools as you need! Support for existing config files .nvmrc, .node-versions, .ruby-version for smooth migration! .tool-versions to manage all your tools, runtimes, and their versions in a single, sharable place. Supports Bash, ZSH, Fish & Elvish with completions available. Provides a GitHub Action to install and utilize your .tool-versions in your CI/CD workflows.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 7
    Bats-core

    Bats-core

    Bash automated testing system

    Bats is a TAP-compliant testing framework for Bash. It provides a simple way to verify that the UNIX programs you write behave as expected. A Bats test file is a Bash script with special syntax for defining test cases. Under the hood, each test case is just a function with a description. Bats is most useful when testing software is written in Bash, but you can use it to test any UNIX program. Test cases consist of standard shell commands. Bats makes use of Bash's errexit (set -e) option when running test cases. If every command in the test case exits with a 0 status code (success), the test passes. In this way, each line is an assertion of truth. The Bats source code repository is hosted on GitHub. There you can file bugs on the issue tracker or submit tested pull requests for review.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 8
    Spaceship ZSH

    Spaceship ZSH

    A Zsh prompt for Astronauts

    Spaceship is a minimalistic, powerful and extremely customizable Zsh prompt. It combines everything you may need for convenient work, without unnecessary complications, like a real spaceship. Powerline Font must be installed and used in your terminal (for example, switch font to Fira Code). Spaceship works well out of the box, but you can customize almost everything if you want. Tweak section's behavior with tons of options. Or, define a custom section that will do exactly what you want. You have the ability to customize or disable specific elements of Spaceship. Set options and define new sections in your .zshrc file, after the theme. To include a custom section you have defined in your prompt, add it to the SPACESHIP_PROMPT_ORDER. Spaceship supports most of the popular programming languages, runtimes, version managers, etc. If it doesn't support something that you need, feel free to open a pull request.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 9
    ani-cli

    ani-cli

    A cli tool to browse and play anime

    A cli tool to browse and play anime. A cli to browse and watch anime (alone AND with friends). This tool scrapes the site gogoplay. If you encounter "Video URL not found" or any breaking issue, then make sure you are on the latest version by typing sudo ani-cli -U to update on Linux, Mac, and Android. On Windows, run gitbash as administrator then their type ani-cli -U. If after this the issue persists then open an issue. If you see sed warnings or your history entries have disappeared after updating, then update your history file with the history transition script.
    Downloads: 3 This Week
    Last Update:
    See Project
  • Powering the best of the internet | Fastly Icon
    Powering the best of the internet | Fastly

    Fastly's edge cloud platform delivers faster, safer, and more scalable sites and apps to customers.

    Ensure your websites, applications and services can effortlessly handle the demands of your users with Fastly. Fastly’s portfolio is designed to be highly performant, personalized and secure while seamlessly scaling to support your growth.
    Try for free
  • 10
    acme.sh

    acme.sh

    A pure Unix shell script implementing ACME client protocol

    A pure Unix shell script implementing ACME client protocol. An ACME protocol client written purely in Shell (Unix shell) language. Full ACME protocol implementation. Support ECDSA certs. Support SAN and wildcard certs. Simple, powerful and very easy to use. You only need 3 minutes to learn it. Bash, dash and sh compatible. Purely written in Shell with no dependencies on python. Just one script to issue, renew and install your certificates automatically. Does not require root/sudoer access. Docker ready. IPv6 ready. Cron job notifications for renewal or error etc. It's probably the easiest & smartest shell script to automatically issue & renew the free certificates. After the cert is generated, you probably want to install/copy the cert to your Apache/Nginx or other servers. The ownership and permission info of existing files are preserved. You can pre-create the files to define the ownership and permission.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 11
    tfenv

    tfenv

    Terraform version manager

    Terraform version manager inspired by rbenv. The trust-tfenv directive means that verification uses a copy of the Hashicorp OpenPGP key found in the tfenv repository. Skipping that directive means that the Hashicorp key must be in the existing default trusted keys. By default, console output from tfenv does not print a date stamp or log severity. Some variables allow you to pass a string containing a command that will be executed using eval in order to produce a prefix to each console output line, and each FILE type log entry. If you put a .terraform-version file on your project root, or in your home directory, tfenv detects it and uses the version written in it. If the version is latest or latest:<regex>, the latest matching version currently installed will be selected.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 12
    dehydrated

    dehydrated

    letsencrypt/acme client implemented as a shell-script

    letsencrypt/acme client implemented as a shell-script, just add water. Dehydrated is a client for signing certificates with an ACME-server (e.g. Let’s Encrypt or ZeroSSL) implemented as a relatively simple bash script. It uses the OpenSSL utility for everything related to actually handling keys and certificates, so you need to have that installed. Other dependencies are cURL, sed, grep, mktemp (all found on almost any system, cURL being the only exception). Please keep in mind that this software and even the acme-protocol are relatively young and may still have some unresolved issues. Feel free to report any issues you find with this script or contribute by submitting a pull request. dehydrated is looking for a config file in a few different places, it will use the first one it can find.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 13
    wslu

    wslu

    A collection of utilities for Windows 10 Linux Subsystems

    This is a collection of utilities for Windows 10 Linux Subsystem, such as retrieving Windows 10 environment variables or creating your favorite Linux GUI application shortcuts on Windows 10 Desktop. Requires Windows 10 Creators Update; Some of the features requires a higher version of Windows 10; Supports WSL2. A WSL shortcut creator to create a shortcut on your Windows 10 Desktop. A WSL system information printer to print out system information from Windows 10 or WSL. A WSL screenshot information tool to print information in an elegant way. A fake WSL browser that can help you open links in the default Windows browser or open files on Windows. A set of quick actions for WSL such as quickly mounting all drives or manually syncing time between Windows and WSL. And much more.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14
    DIET-PC (DIskless Embedded Technology Personal Computer) is a software kitset enabling IT professionals to build an open source GUI appliance based on commodity x86 (PC), PowerPC (Mac) or ARM (handheld) hardware, using an embedded Linux methodology.
    Downloads: 6 This Week
    Last Update:
    See Project
  • 15
    This project is a relatively simple way to turn a PC into a terminal server client, including both RDP and VNC capability. Unfortunately, I do not have time available to continue this project. If anyone would like to do so, please get in touch!
    Downloads: 4 This Week
    Last Update:
    See Project
  • 16
    FuTTY

    FuTTY

    FireEgl's PuTTY -- FuTTY!

    FuTTY is a fork of PuTTY and PuTTYTray.
    Downloads: 9 This Week
    Last Update:
    See Project
  • 17
    Bashish is a theme enviroment for text terminals. It can change colors, font, transparency and background image on a per-application basis. Additionally Bashish supports prompt changing on common shells such as bash, zsh and tcsh.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 18
    ThinTUX is a small Linux distribution for thin clients. It has support for all major remote access protocols. The distribution can be booted from the network. The configuration is stored on a DHCP server to simplify terminal management.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 19
    ZhuaShuShell is a set of bash scripts to crawl online html e-books from certain Chinese e-book sites and save the data that is formatted as a single text book to your local machine.The newest codes and usage is here:http://tinyurl.com/2d573k (in Chinese)
    Downloads: 1 This Week
    Last Update:
    See Project
  • 20
    Bash-Snippets

    Bash-Snippets

    A collection of small bash scripts for heavy terminal users

    A collection of small bash scripts for heavy terminal users with no dependencies. All of these scripts have been heavily tested on macOS and Linux. Most of these scripts have been tested on Windows 10 and the official developer bash instance. Does not work with Cygwin or Mysys2.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    JMrTools, is inspired by the MrTools Perl Project (Written by Robert Marino). This JAVA project implements ssh telnet, scp, rsync, sftp, ftp, and stdio. Providing execution/transfer of commands, script, or files on Multiple hosts concurrently.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Lan Core is a free & open source software that lets you to build a thin client network on a Windows operating system. It was originally designed to work in a server or workstation with Windows XP Professional using the native remote desktop protocol.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    Liquid Prompt

    Liquid Prompt

    A full-featured & carefully designed adaptive prompt for Bash & Zsh

    Liquid Prompt gives you a nicely displayed prompt with useful information when you need it. It shows you what you need when you need it. You will notice what changes when it changes, saving time and frustration. You can even use it with your favorite shell, Bash or zsh. Liquidprompt is an adaptive prompt for Bash & Zsh that gives you a nicely displayed prompt with useful information when you need it. It does this with a powerful theming engine and a large array of data sources. To comply with the AGPL clauses, anybody offering Liquid Prompt over the network is required to also offer access to the source code of it and allow further use and modifications. As Liquid Prompt is implemented purely in shell script, anybody using it over SSH or equivalent terminal connection automatically also has access to the source code, so it is easy to comply with the license.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24

    MA Shell Initialisation

    BASH shell initialisation framework

    A BASH, SH and KSH (and maybe others) initialisation framework that enables your shell environment to handle logging on to different sites & operating systems and configure your environment and the different software installed at different sites etc.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    PXES is a Linux micro distribution that will convert (or recycle) in minutes any compliant hardware into a versatile thin client capable of accessing any Unix/Linux XDMCP server, Microsoft Terminal Server through RDP protocol, Citrix ICA server or VNC se
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • Next
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.