Update getting_started_linux_cmake.md (#4367)

The following option names for iree-run-module got changed since this doc was updated last time: (1) input_file -> module_file and (2) inputs -> function_inputs. This PR updates the iree-run-module example in the doc accordingly.
diff --git a/docs/get_started/getting_started_linux_cmake.md b/docs/get_started/getting_started_linux_cmake.md
index 7160950..17318ca 100644
--- a/docs/get_started/getting_started_linux_cmake.md
+++ b/docs/get_started/getting_started_linux_cmake.md
@@ -132,9 +132,9 @@
 
 ```shell
 $ ./build/iree/tools/iree-run-module -driver=dylib \
-          -input_file=/tmp/simple-llvm_aot.vmfb \
+          -module_file=/tmp/simple-llvm_aot.vmfb \
           -entry_function=abs \
-          -inputs="i32=-5"
+          -function_inputs="i32=-5"
 
 EXEC @abs
 i32=5