1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 10:15:24 +02:00

factor: add page (#2414)

This commit is contained in:
Anmol Singh Jaggi 2018-10-09 03:40:56 +05:30 committed by Starbeamrainbowlabs
parent 47ff6a5631
commit e29f371ac1

11
pages/linux/factor.md Normal file
View file

@ -0,0 +1,11 @@
# factor
> Prints the prime factorization of a number.
- Display the prime-factorization of a number:
`factor {{number}}`
- Take the input from stdin if no argument is specified:
`echo {{number}} | factor`