Oct 27, 2005 #1 ddiamond Programmer Apr 22, 2005 918 US In a ksh script, how would I check if a file exists?
Oct 27, 2005 #2 vgersh99 Programmer Jul 27, 2000 2,146 US 'man test' Code: if [ -e path2file ]; then echo 'file exists' fi vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+ Upvote 0 Downvote
'man test' Code: if [ -e path2file ]; then echo 'file exists' fi vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+