How to Install and Uninstall trscripts Package on Kali Linux

Last updated: May 07,2024

1. Install "trscripts" package

Please follow the instructions below to install trscripts on Kali Linux

$ sudo apt update $ sudo apt install trscripts

2. Uninstall "trscripts" package

Please follow the steps below to uninstall trscripts on Kali Linux:

$ sudo apt remove trscripts $ sudo apt autoclean && sudo apt autoremove

3. Information about the trscripts package on Kali Linux

Package: trscripts
Version: 1.18+nmu3
Installed-Size: 992
Maintainer: Anton Zinoviev
Architecture: all
Size: 78552
SHA256: 69db35a64bbdccae74da630668fa01c4e3c965b80ac44571ef8614d50c032230
SHA1: 52503a5b362ef74353737beffcbc3e71d6c76142
MD5sum: f9de33b135ab70c8ef1615839a422338
Description: Scripts for reencoding text files and BDF-fonts
The script `trbdf' can convert a BDF font from one codeset
to another.
.
The script `trcs' reencodes text files from one codeset to another.
It can generate scripts for `tr'. For example the command
trcs --from cp1252 --to latin1 --gen-script
gives you the following output:
#!/bin/sh
.
trap "exit 0" PIPE
.
cat "$@" | tr \
'\200''\201''\202''\203''\204''\205''\206''\207''\210''\211''\212'\
'\213''\214''\215''\216''\217''\220''\221''\222''\223''\224''\225'\
'\226''\227''\230''\231''\232''\233''\234''\235''\236''\237' \
'\105''\77''\47''\146''\42''\267''\53''\77''\136''\77''\123'\
'\253''\117''\77''\132''\77''\77''\47''\47''\42''\42''\267'\
'\-''\-''\176''\77''\163''\273''\157''\77''\172''\131'
.
Both scripts try to approximate the missing from the target codeset
symbols.
.
It is easy to add support of other character sets.
Description-md5:
Multi-Arch: foreign
Tag: interface::commandline, role::program, scope::utility, use::converting,
works-with::font, works-with::text
Section: utils
Priority: optional
Filename: pool/main/t/trscripts/trscripts_1.18+nmu3_all.deb