Community Page
- toxicsoftware.com Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- thank you for the information..
- I'm interested in migrating an EE site to WordPress, but I'm not as tech savvy as you. Do you ever do freelance jobs?
- just found your page, do you if there is a "generic" bluetooth app to remote control the nxt with a mac book? your software works only with space navigator?
- Three things: www.bitbucket.org causes a certificate problem because of the "www" subdomain. Pure python keychain access:...
- Hi. So can you please provide the the code for that application? Would be really appreciated!
Jump to original thread »
I haven’t posted in a while, been very busy with projects. But here’s a very useful little shell function for getting the URL of a path within a subversion working directory:
function -url
{
info $1 > /dev/null
ERROR=$?
if [ $ ... Continue reading »
function -url
{
info $1 > /dev/null
ERROR=$?
if [ $ ... Continue reading »
3 years ago
info $1 | grep 'URL: ' | sed 's/URL: //'
Also somewhere along the line you got smart quotes in your HTML, so the example won't work without editing after copy/pasting into an rc file. I fixed it in the line above by using ' instead of the apostrophe character.
3 years ago
I'll try out the modification to the sed statement and if it works for me too I'll update the code. Thanks!