# Creating symlink ln -s [destination file/dir] [link name] # Import svn svn import -m "initial import" . http://svn.cdnm.com/repo # Untar all .tar files in current directory: for i in *.tar; do tar -xvzf $i; done # Creating an archive $ tar cjf outputfile.tar.bz2 inputs Extract said archive to the current directory. For a compressed archive, you’ll again need to add the z for a .tar.gz, or j for .tar.bz2. $ tar xf inputfile.tar $ tar xjf inputfile.tar.bz2
Never been to CodeSnippets before?
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
Misc. terminal command reference (See related posts)
You need to create an account or log in to post comments to this site.
Related Posts
» Suexec'ed PHP-FastCGI on Apa... in apache php fastcgi suexec
» Mixed example of mod_deflate... in apache mod_deflate httpd.conf
» Serve XHTML 1.1 Properly in apache httpd.conf xhtml
» Getting a copy of a x509 cer... in apache ssl openssl certifcates
» A simple WebDAV repository w... in apache httpd.conf webdav
» mod_rewrite rules to serve a... in apache xhtml modrewrite mimetype htaccess
Snippets (source code soon to be available) developed by Peter Cooper and powered by Ruby On Rails