-
This is rather handy if you're not sure of the case of the starting letter of a program you wish to expand to using tab completion. All that is needed is that the following line is present in either ~/.inputrc...
-
Here are a few ways to list open ports in the linux terminal. First we'll try lsof. $ lsof -i example: COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME kdeconnec 1671 john 10u IPv6 27671 0t0 UDP *:1716 kdeconnec...
-
As I always forget which switches to use on tar I made this little note. Create archive $ tar -zcvpf <destination> <source> z = gzip c = create v = verbose p = preserve permissions f = file Unpack archive...
-
A quick reminder to myself on rsync usage $ rsync -Cvrtp <source> <destination> C = cvs-exclude V = verbose r = recursive t = times p = permissions K = keep dir links $ rsync -a <source> <destination> Corresponds to...