Search for a string of characters in files of a specific type
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 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”
If the files have the extension .JPG #!/bin/bash for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).JPG;
Which FTP server should I install at Ubuntu? VSFTP – simple and easy to configure, can be set up quickly.
How to find files in Linux with Bash? File search in Linux: find ./ -name “mozilla.pdf”