Jun
7
Installing OpenSSH on Windows 7
June 7, 2011 | 17 Comments
Today, I was tempted to take control of a Windows machine remotely in console mode as I’m trying to script the launch and use of VLC. A quick Google search reveleaed the existence of the sshwindows project which is a more lightweight solution than a full cygwin installation. Here are the installation steps : Download [...]
Jan
29
iTerm2: advanced features
January 29, 2011 | 5 Comments
At bluekiwi, I constantly have no less than 10 opened terminal sessions at the same time. Because it is so easy to launch a command in the wrong window (on the wrong server), I got used to always order my tabs the same way and always give them the same name. As I needed more [...]
Jan
23
FTP upload in a script
January 23, 2011 | Leave a Comment
The FTP protocol is simple to use. In a console, type ftp <host> to connect to your host. Enter your login and password when prompted and use get to download and put to upload a file. But what about doing that in a bash script ? Here is a working example of an FTP upload [...]
Jan
14
A little help with Grep
January 14, 2011 | 1 Comment
I was triggered by this post on ReadWriteWeb to write a small bash script to make it easy for me to use grep to look for a pattern in my source code. The post on ReadWriteWeb points to the -i -r -E -n -C –colors options to make grep recursively and case insensitively search for [...]