find . -type f -exec chmod 644 {} \;
or
find . -type f -print0 | xargs -0 -I {} chmod 644 {}`
alias my_alias="command"
myfunction () {
echo "this is my function"
echo "This is the function with positional argument $1"
}
find . -type f -exec chmod 644 {} \;
or
find . -type f -print0 | xargs -0 -I {} chmod 644 {}`
alias my_alias="command"
myfunction () {
echo "this is my function"
echo "This is the function with positional argument $1"
}