"Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r--" Code Answer's
You're definitely familiar with the best coding language TypeScript that developers use to develop their projects and they get all their queries like "Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r--" answered properly. Developers are finding an appropriate answer about Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r-- related to the TypeScript coding language. By visiting this online portal developers get answers concerning TypeScript codes question like Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r--. Enter your desired code related query in the search bar and get every piece of information about TypeScript code related question on Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r--.
Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r--

# !/bin/bash
for item in *
do
if [ -f $item ]
then
echo "----------------$item----------------"
if [ -x $item ]
then
echo "File in Executable mode"
chmod -x $item
echo "Executable permission Removed!"
fi
if [ -w $item ]
then
echo "File in Write mode"
chmod -w $item
echo "Write permission Removed!"
fi
if [ -r $item ]
then
echo "Already in read mode(r--r--r--)"
else
chmod +r $item
echo "Now the read permission granted "
fi
echo "final permission"
ls -al $item
fi
echo
done
Source: www.tutorialspoint.com
All those coders who are working on the TypeScript based application and are stuck on Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r-- can get a collection of related answers to their query. Programmers need to enter their query on Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r-- related to TypeScript code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r-- for the programmers working on TypeScript code while coding their module. Coders are also allowed to rectify already present answers of Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r-- while working on the TypeScript language code. Developers can add up suggestions if they deem fit any other answer relating to "Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r--". Visit this developer's friendly online web community, CodeProZone, and get your queries like Using shell script, display the contents of the present working directory. If it is an ordinary file print its permission and change the permissions to r--r--r-- resolved professionally and stay updated to the latest TypeScript updates.