Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Checking if a file exists on my computer is easy. But how about checking if this file exist on my server?

If my file is:

host@server:/path/to/my/file.txt

What do I need to do to check if it exists?

share|improve this question
1  
You might want to look at the manual page for ssh. – Joachim Pileborg Dec 1 '11 at 16:36

closed as off topic by casperOne Dec 2 '11 at 15:22

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 6 down vote accepted

How about this?

ssh user@host 'if [ -f /path/to/my/file.txt ]; then echo yes; else echo no; fi'
share|improve this answer
I found some thing like this, but this work very fine. I found my error. I use ssh user@host:/path/to/my/ 'if [ -f file.txt ]; ... This not work :) – Rodrigo Dec 1 '11 at 16:52

Something like this could help -

ping -c 1 ipaddress && ssh user@host 'test -e /path/and/filename && echo exists'
share|improve this answer
Work to. A little more verbose :) – Rodrigo Dec 1 '11 at 16:54
Why ping first? – Sorpigal Dec 1 '11 at 18:14
Just to check if the host is up or not. – Jaypal Dec 1 '11 at 18:16
ssh serverName

test -e
echo $?
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.