WordPress database error: [Disk full (/tmp/#sql-temptable-1-260f13-5553.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]SHOW FULL COLUMNS FROM `markjacobsen_options`
Need to change all *.ksh files to be executable under a directory, but not having luck with a recursive chmod? The issue is you need to combine chmod with a find and xargs like so…<\/p>\n
find \/home\/user -name '*.ksh' | xargs chmod 744<\/code><\/pre>\nThe first piece lists all the files under the path that match *.ksh and passes them to xargs and chmod. If you want to see an example without changing any permissions, just substitute ls -l like so…<\/p>\n
find \/home\/user -name '*.ksh' | xargs ls -l<\/code><\/pre>\nPlease remember to subscribe to the newsletter<\/a> to stay up to date!<\/i>
\n
\nYou or someone you know looking to buy or sell?<\/i>\n<\/a>
\nDisclaimer: Thoughts and opinions are my own, and do not reflect the views of any employer, family member, friend, or anyone else. Some links may be affiliate links, but I don't link to anything I don't use myself. You would think this should be self evident these days, but apparently not...<\/small><\/i>","protected":false},"excerpt":{"rendered":"Need to change all *.ksh files to be executable under a directory, but not having luck with a recursive chmod? The issue is you need to combine chmod with a find and xargs like so… find \/home\/user -name ‘*.ksh’ | xargs chmod 744 The first piece lists all the files under the path that match … Continue reading Change permissions on files of a specific type in linux<\/span>