Mass vim file opening reloaded

Thinking about it, the snippet I posted earlier was a bit silly as vim can open by itself multiple files way more efficiently. The only benefit from my script is that I don't have to type the --servername and --remote-silent-tab. So let's add some usefulness ! First, when I need this script, it's...

Rename directories to lowercase 2

Using a single (and somewhat simple) shell line, you can rename any directory to its lowercase version. for i in *; do lcase=`echo $i | tr A-Z a-z`; if [ ! -d $lcase ]; then mv $i $lcase; fi; done; Viva el chell !...

Top tags