LATEST TRANSMISSIONS
ENCRYPTED // PUBLIC KEY DETECTED
Create Remote Git Repo from Commandline
Learn how to create a remote Git repository from the command line using "gh" for GitHub and "glab" for GitLab.
Build Android Artifact from Command-line
Theory Everything you do that builds Android artifacts from Android Studio is based on Android command-line tools, so you can just build them from command-line. Why Build Android Artifact from Command…
Merge Text Files Into A Single File
find /path/to/source -type f -name '*.txt' -exec cat {} + > merged.txt …
Quick proxy in bash
Sometimes we need to use proxy in bash, but it is boring and inconvenient for us config and clear proxy for bash everytime when we need to use a proxy. Create a file which will be used as a command in…
终端命令行如何穿越?
开发的时候经常遇到在命令行里访问GitHub和者某些篱笆外的资源不太方便的情况,于是写了一个简单的脚本来快捷实现命令行翻篱笆,原理很简单,就是套娃。 创建一个可执行文件作为命令使用 创建一个文件,保存到/usr/local/bin,这样之后它会被添加到path中,便可以在bash 中当作命令使用 vim /usr/local/bin/proxy 编写翻篱笆脚本 #!/usr/bin/env…