Tagged Questions

4
votes
3answers
929 views

Opening a remote file with TextWrangler

My current solution for editing files on a remote web server is to use Fetch to browse the remote machine and TextWrangler to make the edits. But since I'm getting more comfortable navigating the ...
2
votes
3answers
400 views

A quickie: python, terminal “print command not found”

Been using terminal to run python scripts written in textwrangler for about 18 months. Decided to look at possibility of moving to an IDE so downloaded a couple of trial versions. Just downloaded ...
0
votes
2answers
98 views

Why isn't os.walk recognising my variable name?

I've written the following in TextWrangler: directory = raw_input("See contents of: ") for root, dirs, files in os.walk(directory): print root, dirs, files Unfortunately, when I run it in ...