#files Articles


  • 2012-03-13
  • it

owncloud in a box!

owncloud http://susestudio.com/a/TadMax/owncloud-in-a-box Based on opensuse 12.1, I tested this out in vmware workstation by downloading the vm version (has a .vmdk file) inside the .tar inside the .tar.gz. "Run the appliance, go to http://[yourservername]/owncloud and login as admin with the password …

  • 2011-05-02
  • it

Rename files in Linux - mv

Hey! This is an awesome little trick I just learnt about: instead of doing mv file1.txt file1.txt.old you can do this mv file1.txt{,.old} and it will automagically add a .old at the end of the filename. This is called a brace expansion: http://tldp.org …