Lecture Note
University
University of California San DiegoCourse
DSC 207R | Python for Data SciencePages
2
Academic year
2023
anon
Views
10
Live Code, Intro to UNIX Introduction Computers and their operating systems are widely used in today's digital world, making it crucial to grasp their fundamental functions. Computer fans and experts alike frequentlyutilize Unix, one such operating system. To assist newcomers in becoming familiar with Unix,this article strives to offer a thorough grasp of the fundamental commands. Unix Shell Unix is an operating system with a command-line interface that enables users to carry out numerous operations using commands. A command prompt appears when you first launch aUnix shell. You can communicate with the shell using commands at the command prompt,which displays the directory you are currently in. Lowercase is typically used when typing Unix commands, and the shell is case-sensitive. As a result, it is imperative to consider the possibilities when typing commands. Unix commands frequently consist of a single word and carry out particular functions. We'll examine some of the most popular Unix commands and their features in theparagraphs that follow. Unix Commands ● ls - List Files and Directories To view a list of the files and folders in the current directory, use the "ls" command. The shell, for instance, displays the files and directories in the current directory when you run "ls" in it. By providing the path to the directory, you can also use the "ls" command to list the files and folders inside that directory. ● cd - Change Directory The current directory can be changed with the "cd" command. You can use "cd Python for Data Science" to go from the "/Users/altintas" directory to the "Python for Data Science" directory, for instance. ● pwd - Print Working Directory The "pwd" command is used to display the current working directory. This command can be handy if you want to confirm the directory you are in before executing a command. ● cat - Concatenate Files The "cat" command can be used to show a file's contents on the shell. For instance, you may use the "cat" command to view the contents of a file named "fruits.txt" in the current directory by typing "cat fruits.txt."
● clear - Clear the Shell Screen The "clear" command is used to clear the shell screen, making it easier to read the output of the commands. For instance, you can use the "clear" command to clear the screen and make it simpler to see the result if a command's output is too long and fills the entire screen. ● man - Display Manual Pages The manual pages of a command are displayed using the "man" command. For instance, typing "man ls" will display the "ls" command's manual page if you wish to learn more about it. ● ls -l - List Files and Directories in Long Format To list files and directories in long format, which also contains details like file size, ownership,and modification time, use the "ls -l" command. ● ls -a - List All Files and Directories All files and folders, including hidden files and directories that begin with a dot, can be seenby using the "ls -a" command. Conclusion In conclusion, many professionals and computer enthusiasts use the robust and adaptable Unix operating system. Anybody who wants to use Unix efficiently has to becomefamiliar with the fundamental commands. Beginners should be familiar with the most popularUnix commands, which are those that are listed in this article. Everyone can learn to useUnix and its commands proficiently with time and effort.
Intro to UNIX
Please or to post comments