diff --git a/less.drush.inc b/less.drush.inc
new file mode 100644
index 0000000..67dac20
--- /dev/null
+++ b/less.drush.inc
@@ -0,0 +1,26 @@
+<?php
+/**
+ * @file
+ * Drush commands for LESS.
+ *
+ */
+
+/**
+ * Implement hook_drush_cache_clear.
+ *
+ * @param $types
+ *   List of cache types that can be cleared.
+ */
+function less_drush_cache_clear(&$types) {
+  // Add in Less
+  $types['less'] = 'drush_less_cache_scan';
+}
+
+/**
+ * Rescan bundles and rebuild if needed.
+ */
+function drush_less_cache_scan() {
+   // here is where we flush the less cache
+   $less_path = file_directory_path() .'/less';
+   _less_recursive_delete($less_path);
+}
