Linux/Bash Commands Damian Gordon. ls List all the visible files in the current folder.

Slides:



Advertisements
Similar presentations
NO YES Question 3 Question 2 Question 1 Topic 1 Next Topic 1.
Advertisements

Linux commands exercise 1. What do you need, if you try to these at home? You need to download and install Ubuntu Linux from the Internet – DVD is need.
CSE1222: Unix IntroThe Ohio State University1. Common Directory Commands  lsList directory contents  cd {dir}Change working directory to {dir}  pwdPrint.
The Unix File System. What are the three parts of every file on a Unix filesystem? And where is each stored? Filename - stored in directories Inode -
CS-502 Fall 2006Project 1, Fork1 Programming Project 1 – Fork.
UnixUnix Basic. Convention Italic text indicates text displayed by the computer system. For example, login: indicates a login prompt displayed by the.
UNIX Chapter 00 A “ Quick Start ” into UNIX Operating System Mr. Mohammad Smirat.
Unix Basics. Systems Programming: Unix Basics 2 Unix Basics  Unix directories  Important Unix file commands  File and Directory Access Rights through.
Lecture 01CS311 – Operating Systems 1 1 CS311 – Lecture 01 Outline Course introduction Setting up your system Logging onto the servers at OSU with ssh.
UNIX Command-line Introduction Terence Parr. Navigating  cd  pwd  ls  pushd/pod  cd  pwd  ls  pushd/pod.
UNIX By Darcy Tatlock. 1. Successful Log Into Unix To actively manipulate your website you need to be logged in. Without being logged in you cannot enter.
1 SEEM3460 Tutorial Unix Introduction. 2 Introduction What is Unix? An operation system (OS), similar to Windows, MacOS X Why learn Unix? Greatest Software.
A Mini UNIX Tutorial. What’s UNIX?  An operating system run on many servers/workstations  Invented by AT&T Bell Labs in late 60’s  Currently there.
Systems Programming Concepts
CprE 288 – Quick intro for compiling C in Linux
Introduction to UNIX donna Bair-Mundy. What is UNIX? Applications OperatingSystem Hardware.
Javadoc. The Plan ● What is Javadoc? ● Writing Javadoc comments ● Using the Javadoc tool ● Demo ● Practice.
Essential Unix at ACEnet Joey Bernard, Computational Research Consultant.
Computer Programming for Biologists Oct 30 th – Dec 11 th, 2014 Karsten Hokamp  Fill out.
ECT 250: Survey of E-Commerce Technology FrontPage Publishing pages Unix.
Introduction to Systems Programming (CS 0449) PalmOS Tools: Developer Studio & Cygwin.
Git Basics. Git stores data as snapshots of the project over time When commit Save all the files If files have not changed, point to the previous identical.
1 Operating Systems and Using Linux Topics What is an Operating System? Linux Overview Frequently Used Linux Commands Reading None.
COP3502: Introduction to Computer Science Yashas Shankar.
Tera Term Brian Smith Chris Vasse Zaheemat Adetoro William Newton Tom Presgraves.
Lecture One. Objective: Provide description of the Command-Line Editor of Linux operating system. Enable students to understand the practical side of.
Chapter 4 LINUX Shells. Table 4.1 Shell Locations and Program Names.
The Genome Analysis Centre Building Excellence in Genomics and Computational Bioscience.
1 Day 18 Bash and the.files. 2 The.files ls shows you the files in your directory –Or at least most of them. –Some files are hidden. Try: ls –a –This.
COP3502: Introduction to Computer Science Yashas Shankar Lecture #2.
More Unix Naomi Altman. Directories Directory = folder mkdir - makes a new directory rmdir - removes an empty directory cd mydirectory - moves you into.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
PTA Linux Series Copyright Professional Training Academy, CSIS, University of Limerick, 2006 © Workshop III - Part B Shell Commands Professional Training.
Basic Unix Commands & GCC Saurav Karmakar Spring 2007.
Linux Stuff Last Update Copyright 2014 Kenneth M. Chipps Ph.D. 1.
The Unix File sytem. Introduction Tree structure …
Unix Fundamentals CS 127. File navigation cd - change directory cd /var/log cd /etc/apache2 cd ~/Desktop ~ is a shortcut for the home directory.
Basic Unix Commands. Listing files and directories ● ls:command is used to list the files and ● directories in present working directory ● ls command.
1. user1 man lscpshtarvi bin libsbinsharelocalcontrib vue mail tmpvue grouppasswdprofile vmunix news user2 //// sbinusrdevetcoptvarstandtmphome 2.
Learning basic Unix command It 325 operating system.
File Management commands cat Cat command cat cal.txt cat command displays the contents of a file here cal.txt on screen (or standard out).
CS 120 Extra: The CS1 Server Tarik Booker CS 120.
Unix Lab Fall Shell Scripting ●Through the shell (LXTerminal) you can: ●Run programs. ●Interact with the file system. ●Change settings. ●Send/receive.
Carl’s Ultra-Basic Guide to the Command Line and Git Carl G. Stahmer Director of Digital Scholarship cstahmer UD Davis Data Science.
Kathleen O’Connor Supervisor of Mathematics and Science K-4.
CMSC 104, Version 9/011 Operating Systems and Using Linux Topics What is an Operating System? Linux Overview Frequently Used Linux Commands Reading None.
UNIX To do work for the class, you will be using the Unix operating system. Once connected to the system, you will be presented with a login screen. Once.
LINUX FOR BEGINNERS Because everyone needs Fundamentals
Andy Wang Object Oriented Programming in C++ COP 3330
Linux/Unix - Download Ubuntu Linux :
Unix Commands PowerPoint
The Command Prompt Commands are the way to “do things” in Unix
Useful Linux Commands.
Eric Shook Department of Geography Kent State University
Command Line Interface for Beginners
LINUX FOR BEGINNERS Because everyone needs Fundamentals
Lab 1 introduction, debrief
The Linux Command Line Chapter 2
Operating Systems and Using Linux
Operating Systems and Using Linux
EPD 3.0 electronic Product Designer setup procedure: ls ~eeview | grep ePD | grep setup Part 2 tutor_ePD.setup ee457_ePD.setup.
The Unix File System.
Lab 00 Discussion Linux Basics
Andy Wang Object Oriented Programming in C++ COP 3330
Scripts In Matlab.
Lab 2: Terminal Basics.
DOS Commands Damian Gordon.
I can tell the products of 6’s facts
ME 123 Computer Applications I Lecture 7: Basic Functions 3/20/03
Presentation transcript:

Linux/Bash Commands Damian Gordon

ls List all the visible files in the current folder.

ls -a List all the visible and hidden files in the current folder. e.g..bashrc.login

ls -l List all the visible files in the current folder, and give details of who created it, when, the file size, priorities.

ls -la List all the visible and hidden files in the current folder, and give details of who created it, when, the file size, priorities.

pwd Print working directory Tell me my current location

cd. cd = change directory. = current directory So this command moves from you form the current directory back to the current directory.

cd.. cd = change directory.. = previous directory So this command moves from you form the current directory back one step to the previous directory.

man ‘man’ is the help command, it gives you the MANual page about a specific topic, in this case it is giving you the manual page about the ‘man’ command.