Home

Awesome

Blink Shell for iOS (edited for more shell utils)

Do Blink! Blink is the first professional, desktop-grade terminal for iOS that leverages the support of Mosh and SSH. Thus, we can unequivocally guarantee stable connections, lightning-fast speeds, and full configurations. It can and should be your all-day-long tool.

We did not create another terminal to fix your website on the go. Blink was built as a professional grade product from the onset. We started by analyzing what the must-haves were and we ended up grounding Blink on these three concepts:

But, Blink is much more. Please read on:

For more information, please visit Blink Shell.

Additions:

This fork also contains a set of shell utilities, so you can add / remove files, list them, etc.

Specifically, the commands available (as of now) are:

All these commands are inside the ios_system.framework (precompiled, for facility). If you want to edit the source (to add more commands), see: https://github.com/holzschu/ios_system .

I suggest installing iVim (https://github.com/terrychou/iVim or https://itunes.apple.com/us/app/ivim/id1266544660?mt=8 ) and use iOS 11 "edit-in-place" to edit files inside Blink sandbox.

curl opens access to file transfers to and from your iPad (ftp, http, scp, sftp...). It uses the key management of BLINKSHELL (the keys you created with "config"). You can also specify keys with a path:

curl scp://host.name.edu/filename -o filename --key $SHARED/id_rsa --pass MyPassword 

You can also use the scp and sftp commands:

scp user@host.name.edu:filename . 
sftp localFilename user@host.name.edu:~/ 

scp and sftp are implemented through curl, by rewriting the arguments to follow the curl syntax. Pro: lighter implementation, smaller memory cost, less likely to have function name collisions. Con: some switches might not have exactly the same meaning.

The language packages (Python, Lua and TeX) only provide the equivalent of the binaries. It is up to you to transfer the directories with the packages (/usr/local/texlive or /usr/lib/python2.7), and place them in the Library folder of the Blink application. This is where commands such as ls, rm, tar, mv... will be useful.

Note: all frameworks (except curl) are dynamic frameworks, to reduce the Application memory footprint.

Environment variables

In iOS, because of sandbox restrictions, you cannot write in the ~ directory, only in ~/Documents/, ~/Library/ and ~/tmp. Most Unix programs assume the configuration files are in $HOME. So either you redefine $HOME to ~/Documents/ or you set configuration variables (using setenv) to some other place.

I do this in Blink, inside the MCPSession.m file. The following variables are defined:

setenv PATH = $PATH:~/Library/bin:~/Documents/bin
setenv PYTHONHOME = $HOME/Library/
setenv SSH_HOME = $HOME/Documents/
setenv CURL_HOME = $HOME/Documents/
setenv HGRCPATH = $HOME/Documents/.hgrc/
setenv SSL_CERT_FILE = $HOME/Documents/cacert.pem

If you want to change them permanently, it's probably best to edit MCPSession.m.

Obtaining Blink

Blink is available now on the AppStore. Check it out!

If you would like to participate on its development, we would love to have you on board! There are two ways to collaborate with the project: you can download and build Blink yourself, or you can request an invitation to help us test future versions (on the raw branch). If you want to participate on the testing, follow and tweet us @BlinkShell about your usage scenarios. Invitations will be sent out in waves, please be patient if you do not receive yours immediately.

Bugs should be reported here on GitHub. Crash reports will be automatically reported back to us thanks to HockeyApp. If you have any questions or want to make sure we do not miss on an interesting feature, please send your suggestions to our Twitter account @BlinkShell. We would love to discuss them with you! Please do not use Twitter to report bugs.

We can't wait to receive your valuable feedback. Enjoy!

Build

Build Status

We made a ton easier to build and install Blink yourself on your iOS devices through XCode. We provide a precompiled package with all the libraries for the master branch. Just extract this package in your Framework folder and build Blink.

git clone --recursive https://github.com/holzschu/blink.git && \
cd blink && ./get_frameworks.sh && \
cd Frameworks/ios_system && ./get_sources.sh 

This will download Blink and the associated frameworks: libssh2, OpenSSL, libmoshios, protobuf and ios_system.

Although this is the quickest method to get you up and running, if you would like to compile all libraries and resources yourself, refer to BUILD. Please let us know if you find any issues. Blink is a complex project with multiple low level dependencies and we are still looking for ways to simplify and automate the full compilation process.

Packages

The precompiled version of ios_system already containes the python and lua "binaries", but not their associated modules.

If you want to use python, you will have to transfer the python modules. The best way is to follow the instructions at Python-ios (without the compilation part). On your computer:

Using Blink

Our UI is very straightforward and optimizes the experience on touch devices for the really important part, the terminal. You will jump right into a very simple shell, so you will know what to do. Here are a few more tricks:

Changelog

View all changes

Attributions