Install Package List
Tagged with: command, file, install, Linux, list, package, text
Install a list of packages from a text file.
cat packages.txt | xargs apt-get install
Install a list of packages from a text file.
cat packages.txt | xargs apt-get install
Replace one string by another in all file found by find.
find . -name *whatyouwant* -exec perl -pi.bak -e 's/TEXT_TO_REPLACE/TEXT_TO_REPLACE_IT_WITH/g' {} \;
You can use Aspell to spell check of a text document using this command. It must be executed in a termial – as it has an console interface.
aspell check test.txt
Grep that searches recursively, ignores binary files, and doesn’t look inside Subversion hidden folders.
grep -Ir --exclude="*\.svn*" "pattern" *
Delete all \n chars in a file…
tr -d "\n"
Convert a text file format from MSDOS to UNIX
dos2unix input_file output_file
This command fetches a web page, converts it to text and shows it.
lynx -dump http://www.example.com/
If you have a debian system and the XMMS in that has a bug that hides the fonts in dailog, try this command…
dpgk-reconfigure locales
Convert from lower case to upper case
echo 'hello world' | tr '[:lower:]' '[:upper:]'