diff --git a/toys/pending/wget.c b/toys/pending/wget.c
index 4283fe4..8657b01 100644
--- a/toys/pending/wget.c
+++ b/toys/pending/wget.c
@@ -3,19 +3,19 @@
  * Copyright 2016 Lipi C.H. Lee <lipisoft@gmail.com>
  *
 
-USE_WGET(NEWTOY(wget, "f:", TOYFLAG_USR|TOYFLAG_BIN))
+USE_WGET(NEWTOY(wget, "O:", TOYFLAG_USR|TOYFLAG_BIN))
 
 config WGET
   bool "wget"
   default n
   help
-    usage: wget -f filename URL
-    -f filename: specify the filename to be saved
+    usage: wget -O filename URL
+    -O filename: specify the filename to be saved
     URL: HTTP uniform resource location and only HTTP, not HTTPS
 
     examples:
-      wget -f index.html http://www.example.com
-      wget -f sample.jpg http://www.example.com:8080/sample.jpg
+      wget -O index.html http://www.example.com
+      wget -O sample.jpg http://www.example.com:8080/sample.jpg
 */
 
 #define FOR_wget
@@ -134,7 +134,7 @@ void wget_main(void)
   char ua[18] = "toybox wget/", ver[6], hostname[1024], port[6], path[1024];
 
   // TODO extract filename to be saved from URL
-  if (!(toys.optflags & FLAG_f)) help_exit("no filename");
+  if (!(toys.optflags & FLAG_O)) help_exit("no filename");
   if (fopen(TT.filename, "r")) perror_exit("file already exists");
 
   if(!toys.optargs[0]) help_exit("no URL");
