We can create a shell script using the basic editors like the vi and nano. After creating a script file we can check the permission and attributes of the file. [ … ]
Category: Shell Script
Getting Help In UNIX
To get the help in LINUX Command Line you can use the following commands followed by the command name to get displayed the information of the command detail. help man [ … ]
Shell Script Real Time Exmples
Open terminal and create some sample shell scripts 1)To kill Locked files at a time vi killlogs.sh mysql -e “show processlist” -ppassword@123 | grep Locked | awk ‘{ print $1}’ [ … ]
Shell Script And its Uses
Shell Script is series of command written in a text file. Shell Script is just like batch file is MS-DOS but have more power than the MS-DOS batch file. Use [ … ]
Linux Shell And Its Types
Computer understand the language of 0’s(zeros) and 1’s(ones) called binary language. In early days of computing, instruction are provided using binary language, which is difficult for all of us, to [ … ]
Introduction To Kernel
Kernel is heart of Linux O/S. It manages resources of Linux O/S. Resources means facilities available in Linux. For example Facility to store data on printer, memory, file management etc. [ … ]