In many situations, we need to perform a Linux command-line operation but we might not know the right utility to run. After being a Linux Administrator for years, I can say how difficult it is to monitor and keep systems up & running. A command is script, programs & libraries that have been created with […]
See MoreTag: Linux Command
Delete php.ini file from all directories
Command for to Delete php.ini file from all directories find -name php.ini -exec rm -f {} \;
See More