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
313 B
Markdown
Raw Normal View History

2018-10-09 03:40:56 +05:30
# factor
> Prints the prime factorization of a number.
2021-03-30 15:53:51 +02:00
> 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`