Print the prime factors of each specified integer NUMBER. $factor 2 2: 2 $factor 3 3: 3 $factor 4 4: 2 2 $factor 5 5: 5 $factor 6 6: 2 3 $factor 7 7: 7 $factor 8 8: 2 2 2 $factor 9 9: 3 3 $factor 10 10: 2 5 $factor 11 11: 11 …
Author Archives: jeffrin
vim delete command
: d 5 deletes five lines from the current cursor position. Vim Editor
hello.php
prints out “happy hacking” using web browser.
pidof
Pidof finds the process id’s (pids) of the named programs
pidof — find the process ID of a running program
$man pidof $pidof chromium 2551 2495 2398 1680 1558 1534 1530 1517 $pidof gnome-terminal $pidof pidof 2567 $pidof gnome-session $pidof gdm3 714 $pidof gdbus $pidof gpm 709 $pidof systemd 1123 $pidof agetty 665 $
hash
i think i did not find typical manpages for “hash”
nc
netcat is a simple unix utility which reads and writes data across network connections, using TCP or UDP protocol. netcat examples
nc – TCP/IP swiss army knife
A UNIX Command Window I Server $nc -l -p 3333 hello hello how are you ? fine Window II client $nc 127.0.0.1 3333 hello hello how are you ? fine UNIX Explanation netcat is a simple unix utility which reads and writes data across network connections, using TCP or UDP protocol. Related Source Code Exposition …
nc – tcp/ip swiss army knife
ABOUT nc Netcat (often abbreviated to nc) is a computer networking utility for reading from and writing to network connections using TCP or UDP. Netcat is designed to be a dependable back-end that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging …
free -m
Display amount of free and used memory in the system.