Last active
February 4, 2025 16:07
-
-
Save AndyYouens/dc0564967e39aed604af1c27595d1fa3 to your computer and use it in GitHub Desktop.
Man examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/QOpenSys/pkgs/bin/bash | |
## FormaServe IBM i Training | |
## | |
## For full disclaimer see https://www.formaserve.co.uk/examples.php | |
## | |
## © - FormaServe Systems Ltd. 1990 - 2025 | |
## www.FormaServe.co.uk | |
## | |
# tell me about the ls command | |
man ls | |
# tell me about grep | |
man grep | |
# tell me about the man command | |
man man | |
# search for a manual, use list & zip as an example | |
man -k list | |
man -k zip | |
# to get a brief description of a command | |
man -f ls | |
# to exit man | |
q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
added a couple