Tag suchen

Tag:

Tag command-line

Python modules updated with one command on Linux 28.07.2025 13:09:04

updates command-line python module
You can update all Python modules with one command on Linux: pip3 list -o –format columns| cut -d‘ ‚ -f1|xargs -n1 pip install -U Here you can see how it works. You see that the command will update all modules automatically.... mehr auf sven-essen.de

MongoDB – NoSQL Database – all locations 25.07.2025 10:34:11

command-line mongodb datenbankmanagementsystem datenbanken linux path database
In order to find in MongoDB the whole paths, you can go into the mongoshell with mongosh It is possible that you see this message, but you can ignore it: sven@fedora:~$ mongoshCurrent Mongosh Log ID: 68833ee8dc64789649384af8Connecting to: mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+2.5.6Usi... mehr auf sven-essen.de

FFmpeg, how to convert an audio file to another file format 24.05.2025 16:37:29

convert linux ffmpeg command-line audio
What is FFmpeg? FFmpeg is a very powerful tool for processing video and audio files. You can use it to convert videos (e.g. from MP4 to AVI), cut, merge or resize them. It’s like a Swiss army knife for your media files that can do almost anything with them.... mehr auf sven-essen.de

MySQL Tabelleneinträge in eine MongoDB-Datenbank kopieren 26.06.2021 09:47:40

corona mysql mongodb kommandozeile fedora linux fedora33 mongoimport command-line konvertierung informatik
Ich pflege eine MySQL-Datenbank für die ganzen Inzidenzwerte und den offiziell der Stadt Essen gemeldeten Erkrankungen. Es soll hier ein technischer Eintrag sein, für die Definition von Erkrankungen in Sachen Corona sind andere zuständig. Das Problem ist, dass mir jemand von LinkedIn einen Floh ins Ohr gesetzt hat, dass MySQL doch etwas für das alt... mehr auf sven-essen.de

How to find files with a some words 07.07.2025 09:38:46

find filename command-line bash linux
find . -type f -iname „*re6*“... mehr auf sven-essen.de