Welcome To Snipplr
Everyone's Recent Snippets Tagged Bash
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
This Ruby script generates the [Gnome Terminals For Rails script](http://snipplr.com/view/32227/gnome-terminals-for-rails/ "Gnome Terminals For Rails").
0
543
posted 14 years ago by draq
This will recursively search your directory tree (starting at dir ‘dot’) and chmod 755 all directories only.
find . -type d -exec chmod 755 {} \;
Similarly, the following will chmod all files only (and ignore the directories):
find . -...
1
828
posted 14 years ago by MikeyLikesIt
An easy was to tunnel remote Couchdb instance into a local machine using ssh tunneling, by using the 5893 local port we enable the local instance to run (replication is only a click away).
0
987
posted 14 years ago by narkisr
This can be used to check if an update of a CMS (or blog, plugin, ...) changed something in the frontend (content or HTML).
Run the script with the file that contains the urls as parameter:
`wiff.sh urllist.txt`
urllist.txt contains the urls...
0
833
posted 14 years ago by ascarion
Put this line in your .bashrc.
If the user has a directory named 'bin' then that will be added to the PATH.
All scripts in that path (wich are executable) will be available as commands to that user.
0
1132
posted 14 years ago by berkes
Conversión de un archivo .dmg en .iso en MacOSX. Este código forma parte del artÃculo "Crear imagen ISO con Automator"
0
774
posted 14 years ago by Bloomy
First there was: [http://snipplr.com/view/15246/color-coded-svn-status](http://snipplr.com/view/15246/color-coded-svn-status)
Then there was: [http://snipplr.com/view/16540/color-coded-svn-status-v2](http://snipplr.com/view/16540/color-coded-svn-s...
0
887
posted 14 years ago by philchristensen
> <code>__Usage:__<br>
> ./svn-export.sh [repository/subdir] [rev1] [rev2]</code>
0
767
posted 14 years ago by tcmacdonald
HSH is a cool haskell library that allows you to leverage your shell scripting prowess in haskell programs. In this simple broadcatcher, I use curl for http get, and other standard unix tools for tracking history (so we don't get the same file twice...
1
1043
posted 14 years ago by softmechanics