1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/factor.md

13 lines
314 B
Markdown
Raw Normal View History

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