add a few more variants of --full to the list command
diff --git a/client/lib/rewriter.js b/client/lib/rewriter.js
index 321301e..d4cac8c 100644
--- a/client/lib/rewriter.js
+++ b/client/lib/rewriter.js
@@ -90,7 +90,9 @@
 
     function print(actions) {
 	actions
-	    .filter(action => (options && options == "--full") || !Namer.isDebugArtifact(action.name))
+	    .filter(action =>
+		    (options && (options == '--full' || options == '--f' || options == '-f'))
+		    || !Namer.isDebugArtifact(action.name))
 	    .forEach(action => console.log('    ', action.name[created[action.name] ? 'green' : 'reset']));
 
 	ok_(next);