views:

33

answers:

1

Hi, I have a daily cron task which automatically unrars a rar file and processes it's contents, however, the contents are now password protected so i'm wondering if there's a reliable way to echo the password when prompted? The password prompt comes from the UNRAR program i've installed, running on CentOS. Thanks for any help!

+1  A: 

If you're using unrar for unpacking, you can define the password as command line parameter:

unrar x -ppassword package.rar

Note that there's no space between -p and your password parameter.

jkramer
Perfect! Many thanks @jkramer
kenny99