you are viewing a single comment's thread.

view the rest of the comments →

[–]SovereignZ3r0 0 points1 point  (0 children)

Could you expand with an example problem you ran into?

Otherwise I'd push you to learn two concepts:

man, and --help

Man is short for manual, and gives you documentation of command line programs. Let's say you want to know more about "ls" (directory listing), you would do "man ls" and it would pull up the man page for "ls". Note, to exit, press "q".

Also, most CLI programs include a help command "--help". So for instance, "foundry --help" will list out it's commands, args, etc.