tldr/pages/common/factor.md

13 lines
281 B
Markdown
Raw Permalink Normal View History

2018-10-09 01:10:56 +03:00
# factor
> Print the prime factorization of a number.
> More information: <https://www.gnu.org/software/coreutils/factor>.
2018-10-09 01:10:56 +03:00
- Display the prime-factorization of a number:
`factor {{number}}`
- Take the input from `stdin` if no argument is specified:
2018-10-09 01:10:56 +03:00
`echo {{number}} | factor`