diff --git a/views_data_export.drush.inc b/views_data_export.drush.inc
index 14a032f..5548af8 100644
--- a/views_data_export.drush.inc
+++ b/views_data_export.drush.inc
@@ -17,11 +17,12 @@ function views_data_export_drush_command() {
       'output_file' => 'The file to write the results to - will be overwritten if it already exists',
     ),
     'options' => array (
-      '--format' => 'csv,doc,txt,xls or xml. These options are ignored if the display_id passed is a "views_data_export" display.',
-      '--separator' => 'csv only: What character separates the fields (default:,)',
-      '--trim-whitespace' => 'csv only: Trim whitespace from either side of fields (default:1)',
-      '--header-row' => 'csv only: Make the first row a row of headers (default:1)',
-      '--quote-values' => 'csv only: Surround each field in quotes (default:1)',
+      'format' => 'csv,doc,txt,xls or xml. These options are ignored if the display_id passed is a "views_data_export" display.',
+      'separator' => 'csv only: What character separates the fields (default:,)',
+      'trim-whitespace' => 'csv only: Trim whitespace from either side of fields (default:1)',
+      'header-row' => 'csv only: Make the first row a row of headers (default:1)',
+      'quote-values' => 'csv only: Surround each field in quotes (default:1)',
+      'arguments' => 'Views arguments, slash-separated',
     ),
     'examples' => array (
       'drush views-data-export myviewname views_data_export_1 output.csv' => 'Export myviewname:views_data_export_1 and write the output to output.csv in the current directory',
@@ -137,6 +138,11 @@ function drush_views_data_export($view_name, $display_id, $output_file) {
     'output_file' => realpath(drush_get_context('DRUSH_OLDCWD', getcwd())) . '/' . $output_file,
   );
   _drush_views_data_export_override_batch($view_name, $display_id, $options);
+  $args = drush_get_option('arguments');
+  if ($args) {
+    $args = explode('/', $args);
+    $view->set_arguments($args);
+  }
   $view->execute_display($display_id);
 }
 
