Main Page
From CleanPosts
Linux Jedi Mind Tricks
- Linux Novice - Someone who wonders what RTFM means.
- Linux User - Someone who has tried to RTFM.
- Windows User - Someone who has never heard RTFM.
- Linux Guru - Someone who doesn't need to RTFM.
- Linux Hacker - Someone who knows what isn't in TFM.
- Linux Jedi - The one who WTFM.
Commands
Add a CD-ROM to your list of repositories
apt-cdrom -m add
Add line numbers to a file (5 digits, leading zeros, separated by a colon)
nl -i1 -s': ' -nrz -w5 twit3.txt >twit4.txt
Add line numbers to a file
cat -n file.txt
Append an asterisk prefix to every line in a file
sed -ne 's/.*/* &/p' enterprise.txt > enterprise2.txt
Backup Master Boot Record
dd if=/dev/sda of=MBR.img bs=446 count=1
Batch convert all the avi files in a directory to mp4
(Assumes the files have no spaces in their names, but I have another script for that)
#!/bin/bash for i in *.avi; do ffmpeg -i "$i" "${i%%.*}.mp4" done
Build a list of unique words in a file
tr ' ' \\n < notes20191108.txt | sort | uniq
Build an iso from a file
genisoimage -r -joliet-long -o -win98tib.iso /home/teresita/Desktop/iso/win98[7]20150529.tib
Build an iso image from the contents in a folder
genisoimage -r -o bmp1.iso temp
Build a sorted list of files from the current directory in python
python -c 'import glob; dir = glob.glob("*"); dir.sort(); print "\n".join((dir))'
Burn ISO to disk
wodim -eject -tao speed=0 dev=/dev/sr0 -v -data files1.iso
Change double-spaces in a text file to single spaces
cat redpine.txt | sed 's/ \+/ /g' > redpine2.txt
Change the owner of a directory and all its contents
chown -R teresita DIRECTORY
Combine two files, line by line, comma delimited
$ paste -d, names.txt distances.txt
Compile and install software old-school, from downloaded source code
tar -xvf joe-4.6.tar.gz cd joe* ./configure make sudo make install
Concatenate a group of files into a single new file
for file in *; do cat $file >> linuxgal.txt; done
Convert all your files saved as "*.jpg-large" back to "*.jpg" (so Twitter thinks they are images again):
find . -depth -name "*.jpg-large" -exec sh -c 'f="{}"; mv -- "$f" "${f%.jpg-large}.jpg"' \;
Convert a MIDI file to a .WAV file
timidity -Ow -oRUBY.WAV RUBY.MID
Convert a photo into an ASCII art representation directly into the terminal and save it to photo.ascii at the same time
jp2a Photo.jpg | tee photo.ascii
Convert ASCII diagrams to graphics
ditaa stargrid.txt stargrid.png
Convert .avi video files to smaller .mp4 format
ffmpeg -i 'U2 - New Years Day.avi' 'U2 - New Years Day.mp4'
Convert GIFs from Twitter that download as MP4s back into uploadable GIFs again
ffmpeg -y -i input.mp4 -filter_complex "scale=320:-1:flags=lanczos[x];[x]split[x1][x2]; [x1]palettegen[p];[x2][p]paletteuse" output.gif
Convert man page to text file
man concalc | col -bx >concalc.txt
Convert RPM package to DEB package
alien file.rpm
Copy a file
cp INFILE OUTFILE
Copy command-line output to clipboard
cat spock2.txt | xclip -selection clipboard
Count processes running as each user:
ps -ef | awk '{print$1}' | sort | uniq -c | sort -nr
Create a custom command to list files
alias l = 'ls -l --color=auto'
Create a directory using today's date
mkdir $(date +%Y%m%d)
Create a link
ln -s /initrd/mnt/dev_ro2 HOME
Delete empty files in and under the current directory
find . -empty -exec rm -f {} \;
Display time since boot
uptime
Display unique lines in a sorted file
uniq <FILE1 >FILE2
Download streaming videos and convert them to MP3s
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl sudo chmod a+x /usr/local/bin/youtube-dl youtube-dl --title --extract-audio --audio-format mp3 https://www.youtube.com/watch?v=L3FmBjX-p0I
Extract audio from any video file
ffmpeg -i Pet-Shop-Boys---West-End-Girls.mp4 -vn west-end-girls.ogg
Extract gzip compressed tar archives
gunzip progs.tar.gz tar xvf progs.tar
Extract pages from a PDF to build a new PDF
ps2pdf -dFirstPage=4 -dLastPage=8 input.pdf output.pdf
Extract tarball
tar -xvf /dev/hda/FILE
Factorial function implemented by recursion.
define fact(n) { if (n <= 1) return (n); return (n * fact(n-1)); }
Factorial function in python
python -c 'import math; print(math.factorial(52))'
Find all the unique four-letter words in a text file
cat love.txt | perl -ne 'print map("$_\n", m/\w+/g);' | tr A-Z a-z | sort | uniq | awk 'length($1) == 4 {print}'
Find duplicates on your filesystem
duff -r *
Find files by name
find . -name *wav -print
Find man page for a command
whereis -m genisoimage genisoimage: /usr/share/man/man1/genisoimage.1.gz
Find ten biggest hogs of disk space under a directory
du -s /usr/share/* | sort -nr | head
Find text in a file
awk 'chevy' cars.txt
Format floppy disk
fdformat /dev/sde
Generate a pdf from a man page
man -t vim | ps2pdf - > vim.pdf
Generate a random password
openssl rand -base64 12
FRYSkfIikVA7AuNm
openssl rand -base64 24
l8Ht0b83wCAnH95izexZStOW73IqH/Mz
Get a one-line description for all the files in a directory, delete lines that have no description
ls -l /usr/bin | awk '{print $9}' | xargs whatis | sed '/appropriate/d'
Get a weather forecast for your city
curl wttr.in/seattle
Get information about all files of a certain type
find . -name *com -exec file {} \;
Get the sizes of all subdirectories under a directory
du -sh MYDIR
Grab a copy of a website
wget -w9 -r --random-wait -l3 -np -E URL
List actual files referenced by library symbolic links
sudo ls -lR /lib | grep ^l | awk '{print $9" "$10" "$11}' | grep ^lib | sort
List all mp3 files and tally total size
find / -name '*.mp3' -ls | awk '{s+=$7;f+=1}END{print " MP3 files: "f"\nTotal size: "s/1000000" MB"}'
List all processes by owner, sort on PID
ps -ef | awk '{print $1 " \t" $2 "\t" $8}' | sort -nk 2
List directories
find . -type d -print
List only non-blank lines in a file
awk 'NF >0' file.txt
List the misspelled words in a file
enchant -l matthew
Make a file executable for all users
chmod u+x FILE
Make a file lowercase
cat FILE1.TXT | tr '[A-Z]' '[a-z]' > FILE2.TXT
Make a new .iso image in /mnt/burn from the contents in /mnt/hold
mkisofs -o /mnt/burn/image.iso /mnt/hold
Make an image of a CD on your hard drive
dd if=/dev/sr0 of=image.iso
Make archive
tar -c DIRECTORY | bzip2 > DIR.TAR.BZ2
Make directories for 36 months using brace expansion:
mkdir {2021..2023}-{01..12}
Make ISO from temp directory
genisoimage -r -joliet-long -o files1.iso temp
Make the ls command print in a tree format
alias tree="ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^//' -e 's/-/|/'"
Make the ls command useful for a change
alias ls='ls -lhGpt --color=always'
Make the text in a file all uppercase
cat testa.txt | tr '[a-z]' '[A-Z]' > testb.txt
Mount that image on your system to use it
(The mount point must already exist) mount -o loop image.iso /mnt/temp
Mount your SquashFS file
mount -o loop -t squashfs PUP_412.SFS /mnt/pup
Move all the .jpg images from one folder to another folder, recursively
find www.cleanposts.com -type f -name *.jpg -exec mv '{}' /home/teresita/Downloads \;
MP3 to WAV conversion
madplay --output=wave:OCEANLAB.WAV OCEANLAB.MP3
Prime factors of first 100 integers
echo {1..100} | factor
Print a complete date-time group
date '+%Y-%m-%d/%k:%M:%S'
Print a short list of your most recently-used commands
fc -rl | awk '{print $1=""; print}'
Print number of processes running as each user
$ ps -ef | awk '{print $1}' | sort | uniq -c
Print the current month in Julian dates
cal -j
Print the first sixteen binary numbers using awk to align the data
echo "obase=2;i=0;while(i<=15) {i;i+=1}" | bc | awk '{printf "%4s\n", $0}'
Print the lines of file2 that are missing in file1
grep -vxFf file1.txt file2.txt
Print the squares and cubes of the integers from 0 to 10
python -c 'print([i**2 for i in range(11)]);print([i**3 for i in range(11)])'
Print your top fifteen most frequently-used commands:
history | awk '{print $2}' | sort | uniq -c | sort -n | tail -n15 | sort -nr
Rename all files with extension .OUT with the extension .txt
rename 's/\.OUT$/.txt/' *
Replace spaces in a filename with hyphens
find . -name "* *mp3" -exec rename 's/\ /-/g' {} \;
Replace spaces in the filename of all the files in a directory with hyphens
find . -name "* *mp3" -exec rename 's/\ /-/g' {} \; Michael-Neil-&-Graham-Getty---Retrochet-II---01---Cascade-Effect-Part-1.mp3
Return the name of the most-recently modified file in a directory
$ ls -t | head -1 20190506_061751k2.jpg
Run the last command again as root
sudo !!
Send a man page to the terminal minus the embedded backspace characters
man genisoimage | col -b | less
Shuffle, deal 4 hands
python -c "num=['A', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K']*4; suit=['h','d','c','s']*13; card=[x+y for x,y in zip(num, suit)]; import random as r; r.shuffle(card); print card[1:6];print card[7:12];print card[13:18];print card[18:23]"
Strip blank lines from a text file
awk 'NF > 0' yeshua > yeshua2
Strip carriage returns from a DOS file
tr -d '\015' <INFILE >OUTFILE
Trump voter Twitter account name generator
python -c 'import random; print("TrumpBot"+str(random.randint(0,1000000-1)))'
Turn a directory into a SquashFS file
mksquashfs /tmp/merge PUP_412.SFS
Turn the capslock key into a second ESC key
setxkbmap -option caps:escape
Upload a file to your webspace
wput MYFILE ftp://username:password@web.host.com
Use awk and the command-line factor program to print prime numbers
echo {1..80} | factor | awk 'NF==2 { print $2 }'
Use imagemagick to take a screen shot
import screenshot.jpg
Use CUPS printer management system
localhost:631 (in a browser address bar)
Use the command line as a quick calculator
echo $((145+5)) echo $((145-5)) echo $((145*5)) echo $((145/5)) echo $((145%5)) echo $((145**5))
Use Vorbis Tools to convert a .WAV file to .ogg format
oggenc synthony.wav
View a text file with line numbers added
grep -n ^ countzero.txt | less
Your top 25 commands
history | awk '{print $2}' | sort | uniq -c | sort -nr | head -25
Scripts
Calculate the factors of a number in Python
#!/usr/bin/python import sys n=int(sys.argv[1]) factors = [] for i in range(1,n+1): if n%i == 0: factors.append(i) print (factors)
Convert between numerical bases
#!/bin/bash printf "hex2dec=";echo "ibase=16;$1"|bc printf "dec2hex=";echo "obase=16;$1"|bc printf "oct2dec=";echo "ibase=8;$1"|bc printf "dec2oct=";echo "obase=8;$1"|bc
Convert decimal to 16 bit binary and trim leading zeros
#! /bin/bash D2B=({0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}) echo $((10#${D2B[$1]}))
Convert temperatures
- !/bin/bash
c=$(echo "scale=1;($1-32)*(5/9)" | bc -l) f=$(echo "scale=1;($1*(9/5))+32" | bc -l) echo -e "\n\e[1;30m=$c C & $f F\e[0m\n"
Downshift all file names
#!/bin/bash for x in `ls` do if [ ! -f $x ]; then continue fi lc=`echo $x | tr '[A-Z]' '[a-z]'` if [ $lc != $x ]; then mv -i $x $lc fi done
List primes between 2 and any number
#!/bin/bash for (( i=2; i<=$1; i++ ));do l=$(factor $i | cut -d : -f 1) r=$(factor $i | cut -d : -f 2 | sed 's/ //g') if (( $l == $r ));then echo $i fi done
Make all filenames in a directory lowercase
#!/bin/bash for x in `ls` do if [ ! -f $x ]; then continue fi lc=`echo $x | tr '[A-Z]' '[a-z]'` if [ $lc != $x ]; then mv -i $x $lc fi done
paste into file called lowerit chmod u+x lowerit ./lowerit
Make a new file of the individual words in another file
tr ' ' '\012' <INFILE >OUTFILE
or
for WORD in `cat FILE` do echo $WORD done
Python script to convert polar coordinates (right ascension, declination) to Cartesian coordinates (x,y,z)
#!/usr/bin/python import math import sys rah=float(sys.argv[1]) ram=float(sys.argv[2]) ras=float(sys.argv[3]) ded=float(sys.argv[4]) dem=float(sys.argv[5]) des=float(sys.argv[6]) dis=float(sys.argv[7]) alpha=rah*15+ram/4+ras/240 delta=ded+dem/60+des/3600 alpharad=math.radians(alpha) deltarad=math.radians(delta) x=dis*math.cos(deltarad)*math.cos(alpharad) y=dis*math.cos(deltarad)*math.sin(alpharad) z=dis*math.sin(deltarad) print 'x =',x,'y =',y,'z =',z
Perform a ROT 13 conversion
#!/bin/sh echo "$1" | tr '[A-Za-z]' '[N-ZA-Mn-za-m]'
Rename in bulk
OLD=xxx NEW=yyy for F in $OLD* do SUFFIX=`expr $F : '$OLD\(.*\)'` mv $OLD$SUFFIX $NEW$SUFFIX done
Returns pi to the number of digits specified on the command line
(Answer grows more accurate the longer the fractional part)
#!/bin/bash echo "scale=$1;a(1)*4" | bc -l
Tally up a column of figures
#! /bin/sh case "$1" in [1-9]*) colnum="$1"; shift;; *) echo "Usage: `basename $0` colnum [files]" 1>&2; exit 1;; esac awk '{sum += $col} END {print sum}' col=$colnum OFMT='%.2f' ${1+"$@"}
History
- bc 'define fibonacci(n) {if((n==1)||(n==0)) {return(n);} else {return(fibonacci(n-1)+fibonacci(n-2));}};scale=10;fibonacci(20) / fibonacci(19)'
- cat 131 | head -n 10 | grep 'cntrl:'
- cat 131 | head -n 10 | grep 'print:'
- cat chiefyeshua.txt | xclip -selection clipboard
- dpkg -i deb-multimedia-keyring_2016.8.1_all.deb
- ffmpeg -y -i input.mp4 -filter_complex "scale=320:-1:flags=lanczos[x];[x]split[x1][x2]; [x1]palettegen[p];[x2][p]paletteuse" duck.gif
- find . -depth -name "*.jpg-large" -exec sh -c 'f="{}"; mv -- "$f" "${f%.jpg-large}.jpg"' \;
- find . -name music-usb.pdf
- find . -name "*.tx0" -exec ls -l {} \;
- find . -name "*.tx0" -exec tr '[\000-\011\013-\037\177-\377]' ';' {} \;
- genisoimage -r -joliet-long -o buri3.iso hold
- mkdir moments{1..99}
- mkdir neets[10..24]
- rename -n 's/\.\.\.//' *
- rename -n 's/$/.tx0/' *
- rename -n 's/\.$/.tx0/' *
- rename 's/$/.tx0/' *
- rename *.* .tx0 *
- setxkbmap -option caps:escape
- setxkbmap -option caps:swapescape
- tr '[\000-\011\013-\037\177-\377]' <131 >131.txt
- unrar x 'Wind Of Buri - Moments Of Life 099.part01.rar'
- vim strip
- wc yohanan.tx6
- wget http://www.deb-multimedia.org/pool/main/d/deb-multimedia-keyring/deb-multimedia-keyring_2016.8.1_all.deb
- wodim -eject -tao speed=0 dev=/dev/sr0 -v -data buri11.iso
TERMINAL CRUISE
TCA
Fm | To | Title | Summary |
---|---|---|---|
1 - Students | Chokhmah discovers sentient life on one of her rocky bodies | ||
2 - Michael | Chokhmah unites with a human to live among them | ||
3 - Patriarchs | Melchizedek establishes the knowledge of Chokhmah on Earth | ||
4 - Trial | Michael is arrested and put on trial for preaching infidelity to the Law of Keter | ||
5 - Tribes | The covenant people of Chokhmah flourish in Canaan | ||
6 - Knot | Salem is assailed by armies led by Zadkiel | ||
7 - Samaria | The northern tribes form a kingdom that flourishes for a time |
TCB
Fm | To | Title | Summary |
---|---|---|---|
8 - Exile | The Fallen Angels leave Salem forever | ||
9 - Judah | Chokhmah brings Samarian colonists to Heaven while Judah is left behind | ||
10 - Truce | Lilith and Samael set the frontier between House Larund and House Gerash | ||
11 - Lael | Lael leads colonists from Judah to Heaven | ||
12 - Demonstroke | Lilith and Samael pay court to King Uriel of the House of Bellon | ||
13 - Judea | From the conquest of Nebuchadnezzar to the conquest of Pompey | ||
14 - Binah | The courtship of Keter and Chokhmah | ||
15 - Jashen | One of the B'nei Elohim is sent to retrieve the Golden Gift | ||
16 - Yohanan | Yeshua comes to Yohanan to be baptized | ||
17 - Ark | Lael's group defends the Ark from a group from the Saiph League who would seize it |
TCC
Fm | To | Title | Summary |
---|---|---|---|
18 - Rumbek | Michael, Lilith, and Leliel come before King Metatron in Rumbek | ||
19 - Anshar | Yeshua and Belial have a brief encounter in the land of Anshar | ||
20 - Roshites | Gabriel and Remiel defend the Remnant from a force led by Belphegor | ||
21 - Arrival | The nobles attending the Council of Royals in Rumbek begin to arrive | ||
22 - Yeshua | Yeshua assumes leadership of Yohanan's group of disciples, and takes on more. |
TCD
Fm | To | Title | Summary |
---|---|---|---|
DAA | DZZ | TC-B'nei Elohim | |
DAA | DZZ | TC-Council | The kingdoms of Heaven lay out their grievances |
DAA | DZZ | TC-Risen | |
DAA | DZZ | TC-Temple | |
DAA | DZZ | TC-Interlude | |
DAA | DZZ | TC-Way | |
DAA | DZZ | TC-Union | |
DAA | DZZ | TC-Paul | |
DAA | DZZ | TC-Invasion |
TCE
Fm | To | Title | Summary |
---|---|---|---|
EAA | EDH | Jerusalem | . |
EEA | EHH | Fallen | |
EIA | EEE | Retreat | |
EEA | IEE | Heresy | |
EAA | EEE | Wall | |
EAA | IEEE | Nicaea |
TCF
Fm | To | Title | Summary |
---|---|---|---|
FAA | FDH | Catwalk | |
FFA | FHH | Schism | |
FIA | FFF | Dragon | |
FFA | IFF | Reformers | |
FAA | FFF | Duel | |
FAA | IFFF | Shattered | |
FAA | FFF | Aftermath |
TCG
Fm | To | Title | Summary |
---|---|---|---|
GAA | GCE | Kuwapi | Wanica receives the Golden Gift |
GDA | GEY | Lange | Pastor Lange leads a schism of the Dunkers |
GFA | GHN | Nyduly | Shy Bear and Mark Lange meet Yeshua in Nyduly Wood |
GIA | GJW | Chief | The Kuwapi people have a change in leadership |
TCH
Fm | To | Title | Summary |
---|---|---|---|
HAA | HBX | Band | The earliest days of Kim, Sophie, Dory, and Gabriel |
HCA | HDJ | Attic | Pastor Lange leads a schism of the Dunkers |
HEA | HFQ | Clinic | Kim and Sofie are trapped in DECON quarantine |
HGA | HHC | Cartel | Gabriel escapes the draft |
HIA | HIU | Kaneko | Kim and Sophie plot to escape the internment camp |
HJA | HLA | Train | Kim and Sophie are rescued by Peter, Gabriel, and Dory |
HMA | HNS | Cable | Kim joins Yeshua on a side trip and is bifurcated |
HMA | HNS | Whip | White wingers try to dissuade Gabriel from wedding Kim |
HMA | HNS | Greenbook | The top leadership of the Church has a shakeup |
TCI
Fm | To | Title | Summary |
---|---|---|---|
IAA | IDH | Kim | |
IEA | IHH | Felt | |
IIA | IJE | Porter | |
IKA | ILE | Search | |
IAA | IZZ | TC-Roswell | |
IAA | IZZ | TC-Greenrock | |
IAA | IZZ | TC-YomKippur |
TCJ
Fm | To | Title | Summary |
---|---|---|---|
JAA | JDF | Judith | |
JEA | JHH | Kibbutz | |
JIA | JJE | Independence | |
JKA | ILE | Suez | |
JAA | JZZ | Six Days | |
JAA | IJZZ | Yom Kippur |
TCK
Fm | To | Title | Summary |
---|---|---|---|
KAA | KBZ | Underground | The Red Wing migrates out of state. Robyn gives birth to Ariel. |
KEA | KHH | Roswell | |
KIA | KKE | Roland | |
KKA | ILE | K4 | |
KAA | KZZ | K5 | |
KAA | IKZZ | K6 | |
KAA | KZZ | K7 |
TCL
Fm | To | Title | Summary |
---|---|---|---|
LAA | LAZ | David | David Morrich survives the nuclear attack on the American capital |
LBA | LDZ | Amanda | Dr. Amanda Chase joins DECON to research the B'nei Elohim |
LCA | LCZ | - | |
LDA | LDZ | - | |
LAA | LZZ | L5 | |
LAA | ILZZ | L6 | |
LAA | LZZ | L7 |
TCM
Fm | To | Title | Summary |
---|---|---|---|
MAA | MCM | Apollo | Robyn visits the Apollo 17 site during the landing operation, which didn't happen on the original timeline |
MEA | MFW | Shop | Gary Kildall is tapped to build the world's first microcomputer |
MIA | MME | M3 | |
MMA | IME | M4 | |
MAA | MZZ | M5 | |
MAA | IMZZ | M6 | |
MAA | MZZ | M7 |
TCN
Fm | To | Title | Summary |
---|---|---|---|
NAA | NBY | Ithuriel | Ithuriel demonstrates the Silver Gift to hyz father Michael |
NCA | NEF | Palato | The early history of the revolt at Jupiter |
NIA | NNE | Raziel | |
NNA | INE | Europa | |
NAA | NZZ | Launch | |
NAA | INZZ | Corvette | |
NAA | NZZ | Comet | |
NAA | NZZ | Audience |
TCO
Fm | To | Title | Summary |
---|---|---|---|
OAA | ODH | O1 | |
OEA | OHH | O2 | |
OIA | OOE | O3 | |
OOA | IOE | O4 | |
OAA | OZZ | O5 | |
OAA | IOZZ | O6 | |
OAA | OZZ | O7 |
TCP
Fm | To | Title | Summary |
---|---|---|---|
PAA | PDH | P1 | |
PEA | PHH | P2 | |
PIA | PPE | P3 | |
PPA | IPE | P4 | |
PAA | PZZ | P5 | |
PAA | IPZZ | P6 | |
PAA | PZZ | P7 |
TCQ
Fm | To | Title | Summary |
---|---|---|---|
QAA | QDH | Q1 | |
QEA | QHH | Q2 | |
QIA | QQE | Q3 | |
QQA | IQE | Q4 | |
QAA | QZZ | Q5 | |
QAA | IQZZ | Q6 | |
QAA | QZZ | Q7 |
TCR
Fm | To | Title | Summary |
---|---|---|---|
RAA | RDH | R1 | |
REA | RHH | R2 | |
RIA | RRE | R3 | |
RRA | IRE | R4 | |
RAA | RZZ | R5 | |
RAA | IRZZ | R6 | |
RAA | RZZ | R7 |
TCS
Fm | To | Title | Summary |
---|---|---|---|
SAA | SDH | S1 | |
SEA | SHH | S2 | |
SIA | SSE | S3 | |
SSA | ISE | S4 | |
SAA | SZZ | S5 | |
SAA | ISZZ | S6 | |
SAA | SZZ | S7 |
TCT
Fm | To | Title | Summary |
---|---|---|---|
TAA | TDH | T1 | |
TEA | THH | T2 | |
TIA | TTE | T3 | |
TTA | ITE | T4 | |
TAA | TZZ | T5 | |
TAA | ITZZ | T6 | |
TAA | TZZ | T7 |
TCU
Fm | To | Title | Summary |
---|---|---|---|
UAA | UDH | U1 | |
UEA | UHH | U2 | |
UIA | UUE | U3 | |
UUA | IUE | U4 | |
UAA | UZZ | U5 | |
UAA | IUZZ | U6 | |
UAA | UZZ | U7 |
TCV
Fm | To | Title | Summary |
---|---|---|---|
VAA | VDH | V1 | |
VEA | VHH | V2 | |
VIA | VVE | V3 | |
VVA | IVE | V4 | |
VAA | VZZ | V5 | |
VAA | IVZZ | V6 | |
VAA | VZZ | V7 |
TCW
Fm | To | Title | Summary |
---|---|---|---|
WAA | WDH | W1 | |
WEA | WHH | W2 | |
WIA | WWE | W3 | |
WWA | IWE | W4 | |
WAA | WZZ | W5 | |
WAA | IWZZ | W6 | |
WAA | WZZ | W7 |
TCX
Fm | To | Title | Summary |
---|---|---|---|
XAA | XDH | X1 | |
XEA | XHH | X2 | |
XIA | XXE | X3 | |
XXA | IXE | X4 | |
XAA | XZZ | X5 | |
XAA | IXZZ | X6 | |
XAA | XZZ | X7 |
TCY
Fm | To | Title | Summary |
---|---|---|---|
YAA | YDH | Y1 | |
YEA | YHH | Y2 | |
YIA | YYE | Y3 | |
YYA | IYE | Y4 | |
YAA | YZZ | Y5 | |
YAA | IYZZ | Y6 | |
YAA | YZZ | Y7 |
TCZ
Fm | To | Title | Summary |
---|---|---|---|
ZAA | ZDH | Glossary | |
ZEA | ZHH | People | |
ZIA | ZZE | Places | |
ZZA | IZE | Z4 | |
ZAA | ZZZ | Z5 | |
ZAA | IZZZ | Z6 | |
ZAA | ZZZ | Z7 |
- Sidebar
- Bash20200208
- PS1="-------------------------------------------------------------------------------------------------------------\n\u@\W:"
- streamripper http://95.217.39.141:9125 -u 'WinAmpMPEG/5.0'