Make WordPress as Android App. Yes, follow the article from top to bottom and do not miss out anything. In the end you will see your website or WordPress blog in Android phone as an application.
You can also publish the app in Google Play Store or any eco-system for Android apps (Such as Amazon app store, Samsung galaxy app store, Honor/Huawei App Gallery and So on).
How to Make WordPress as Android App?
Converting WordPress blog or Website is easy if you have hands-on with Android Studio and Android SDKs.
Yes, you need to know little bit of java coding knowledge and basics of Android application development. Do not worry if you have very little knowledge on these both should also be fine. If you follow this article carefully.
Options : (Below are frequently used options with grep command) -i Ignores case -n Print the line number -c Count of matched pattern (Will not print the search line, rather it just prints the count) -r Will search folders for matching text. -v non-matched lines are printed
Try for yourself:
1) Search for any string and print count hint: use -c 2) Search entire folder for match pattern with , (This is special symbol) hint: “\,” 3) Search string by ignoring the case and also search for multiple string in a file hint: use -v and in search string you need to split using | for multiple search string.
Here we’re going to talk all about Permissions (CHOWN) in Unix?
When it comes to access for reading,writing or executing files in unix we need to play around with the permissions! So today we are going to talk all about ownership and permissions (chown).
Ownership and Permissions are important thing in unix, when it comes to files and folders access.
Changing ownership for files and folders using CHOWN
Command Usage:
chown user:group filename (Changing ownership for user and group)
chown :group filename (Only to the group)
chown user filename (Only the user)
chown user:group foldername -R (For folders and sub directory use -R)
Note: -R to apply the changes to the sub directories and files within the folder.
owner – User who created the file or folder group – User belong to the group (groups example: admin, author, sysadmin, root, local, itadmin) – varies from system to system
Try for yourself: 1) Change both owner and group from root to user1 or user1 to root hint: chown root:root file1.txt 2) Try to change for folder and its sub content (incl. sub directories) chown root:aryanz_co_in folder1 -R