How to convert BIN file to ISO in Linux or Mac
Introduction: What Are BIN and ISO files? BIN files to ISO converting. BIN and ISO files are popular disk image […]
Introduction: What Are BIN and ISO files? BIN files to ISO converting. BIN and ISO files are popular disk image […]
Change .webp to .jpg You can convert .webp files to .jpg using a Linux shell script by utilizing tools such
Not possible to connect to NordVPN If we get connection refused on Linux, it is enough: sudo chattr -i -a
Hyperthreading in Bash Sometimes in bash you need to run two scripts concurrently with one script and wait for them
Response HTTP – linux bash How to check HTTP response in linux under bash. I have a text file containing a
How to rotate PDF? Exactly! Sometimes you need to quickly flip a PDF by 90 or 180 or any number
If we want to find specific text, e.g. “Ania” only in PHP files: find . -name “*.php” -print0 | xargs
Search for a string of characters in files of a specific type Read Post »
If we want to delete, for example, only *.js files in the given directory and subdirectories: find . -name “*.js”
How to make a transparent background, i.e. how to convert the background, e.g. from white to transparent: convert test.png -transparent
If the files have the extension .JPG #!/bin/bash for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).JPG;