Connect to remote servers from an iPad and stay connected even when switching between Wi-Fi and cellular using Mosh.
Run built-in shell commands like grep, curl, and sftp on iOS without needing any server connection.
Transfer files between your iPhone and remote servers using scp or sftp directly from the terminal.
Build your own custom Blink Shell from source using Xcode to modify terminal behavior or add features.
Downloading from the App Store takes seconds, building from source requires Xcode, a developer ID, and running a precompile setup script.
Blink Shell is a terminal application for iPhone and iPad, built for developers and system administrators who need a reliable command-line connection on a mobile device. It is available on the App Store and is written in Swift. The core of Blink's design is a combination of two protocols: SSH and Mosh. SSH is the standard way to log into remote servers, but it is sensitive to network interruptions. Mosh (Mobile Shell) is an alternative that stays connected even when you switch from Wi-Fi to cellular or lose signal briefly. Blink uses Mosh to keep sessions alive while you move around, so a dropped connection does not force you to start over. For rendering, Blink uses HTerm, a terminal renderer originally developed for the Chromium project, which handles character encoding and screen updates quickly. The interface removes menus and uses the full screen for the terminal. You navigate between sessions by swiping, close them by sliding down, and zoom with a pinch gesture. Bluetooth keyboards are supported and can be configured to remap keys, for example mapping Caps Lock to Escape or Control. Blink also includes a set of built-in shell commands that work locally on the device, without needing a server connection. These cover basic file operations (copy, move, delete, list), file transfers via curl, scp, and sftp, and utilities like grep, cat, and tar. Because iOS sandboxes apps from writing to the home directory directly, Blink redirects some standard paths to Documents and Library folders inside the app's allowed space. The source code is open and can be built through Xcode using a precompiled set of libraries that includes libssh2, OpenSSL, and the Mosh implementation for iOS. Building it yourself requires cloning the repository, running a setup script, and configuring a developer ID before connecting a device.
← blinksh on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.