zondag 6 februari 2022
SimpleHTTPServer
1. go to the relevant directory in your terminal and type this command
2. type ip and find the 192.168. etc.
3. go to the other computer and type into the browser: 192.168.x.x:8080
dinsdag 22 juni 2021
gunzip all files recursively in a target directory?
For zip-files:
find <path_of_your_zips> -type f -name "*.zip" -exec unzip {} -d <out> \;
https://askubuntu.com/questions/620571/how-do-i-gunzip-all-files-recursively-in-a-target-directory
zondag 6 december 2020
dinsdag 17 november 2020
maandag 16 november 2020
woensdag 14 oktober 2020
How to view fonts on your system
Use the command fc-list and then grep to find the particular font you want
fc-list | grep liberation
dinsdag 29 september 2020
Concatenation of multiple files in the right order
Is there any way to concatenate multiple text files in numerical order of the file names with one bash command?
A problem arises when you go past the number 9. If you give the ls command, you will get:
file10
file11
file12
file1
file2
file3
file4
file5
file6
file7
file8
file9
So, if you want to cocatenate in order, it won't be done correctly.
What is needed is the sort command, like this:
ls | sort -V | xargs cat *.txt
https://stackoverflow.com/questions/35126745/erge-text-files-ordered-by-numerical-filenames-in-bash
Enlarging Libreoffice window completely with command
You can open the LibreOffice window completely by pressing the CTRL+Shift+J keys together.
-
Als je een goede pdf wilt maken van een Volkskrant artikel, moet je als volgt te werken gaan. Open de Volkskrant pagina, waar je een pdf van...
-
You can open the LibreOffice window completely by pressing the CTRL+Shift+J keys together.
-
https://wiki.documentfoundation.org/Faq/Calc/113 Create a new LibreOffice Calc document. Click on a cell in the table (A1 for example) Go t...