CSCI The UNIX System Shell: Aliases

Slides:



Advertisements
Similar presentations
Chapter Seven Unix Shell Environments1 System Programming UNIX Shell Environments.
Advertisements

23-Jun-15Advanced Programming Spring 2002 bash Henning Schulzrinne Department of Computer Science Columbia University.
General Computer Science for Engineers CISC 106 Lecture 12 Roger Craig Computer and Information Sciences 3/11/2009.
CS 497C – Introduction to UNIX Lecture 36: - Customizing the Environment Chin-Chih Chang
Introduction Copyright © Software Carpentry 2010 This work is licensed under the Creative Commons Attribution License See
Chapter 8 The Bourne Again Shell Graham Glass and King Ables, UNIX for Programmers and Users, Third Edition, Pearson Prentice Hall, Original Notes.
1 UNIX essentials (hands-on) the directory tree running programs the shell (using the T-shell) → command line processing → special characters → command.
Using Linux Commands 2 Lab#5
CSCI 330 T HE UNIX S YSTEM Dr. Reva Freedman Department of Computer Science Northern Illinois University Spring 2009.
Using Linux Commands 2 Lab#5. Sort command Sort the lines of text files. $ sort fileName by default it will sort in normal order(alphabetical 0-9 A-Z.
Welcome to CSE  Name: Di Cao   Classroom: DL357  Class Time: T 8:30am - 9:18am  Office.
Introduction to Linux Operating System Tutorial 1
Title Slide CSS 404/504 The UNIX Operating System (2) By Ralph B. Bisland, Jr.
Shell Features CSCI N321 – System and Network Administration Copyright © 2000, 2005 by Scott Orr and the Trustees of Indiana University.
Introduction to Unix – CS 21 Lecture 9. Lecture Overview Shell description Shell choices History Aliases Topic review.
computer
1 UNIX essentials (hands-on) the directory tree running programs the shell → command line processing → special characters → command types → shell variables.
Beyond sh Not everyone is as fond of UNIX as most other people. The tutorial talks about the dark side of UNIX.
CSCI N241: Fundamentals of Web Design Copyright ©2004  Department of Computer & Information Science Tools of Web Development 2: The Emacs Editor.
CSCI 330 T HE UNIX S YSTEM C Shell. C S HELL SPECIFICS Startup and initialization Shell variables Prompt Alias Redirections and pipe 2 CSCI The.
CSE 219 Computer Science III CVS
UNIX/LINUX SHELLS.  “A Unix shell is a command-line interpreter or shell that provides a traditional user interface for the Unix operating system and.
Chapter 0 A “Quick-Start” into the UNIX Operating System.
Silberschatz, Galvin and Gagne  2002 Modified for CSCI 399, Royden, Operating System Concepts Operating Systems Lecture 18 Midterm Review.
Chapter 4 LINUX Shells. Table 4.1 Shell Locations and Program Names.
UNIX shell environments CS 2204 Class meeting 6 *Notes by Doug Bowman and other members of the CS faculty at Virginia Tech. Copyright
UNIX shell environments CS 2204 Class meeting 4 Created by Doug Bowman, 2001 Modified by Mir Farooq Ali, 2002.
Unix – Linux CS3353 Ssystem Administration. OS The Operating System – Acts as the interface to all software, hardware, and users of a computer. – Requires.
Customizing the Shell Environment. UNIX Shells Two characteristics of shells –Interactive: prompts ($) and waits for your response/requests –Noninteractive:
CSCI 330 UNIX and Network Programming Unit IV Shell, Part 2.
2d – CheckBox Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
CSCI 330 UNIX and Network Programming Unit III Shell, Part 1.
2e – RadioButtons Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Module 1 - Introduction to Linux. Users must log-in Linux is case sensitive File and Directories naming conventions (No spaces!) Files and Directories.
Linux A practical introduction. 1)Background and Getting Started Linux is an operating system with multiple providers Red Hat/CentOS (our version) Ubuntu.
EMT 2390L Lecture 3 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
1 Lecture 7 Introduction to Shell Scripts COP 3353 Introduction to UNIX.
CSCI 3333 Data Structures Sorting Exercises
A “Quick-Start” into the UNIX Operating System
CSCI The UNIX System sed - Stream Editor
slides created by Marty Stepp, modified by Josh Goodwin
Introduction to Shells
LECTURE 03: The Bash Command Line
Shell Features CSCI N321 – System and Network Administration
Andy Wang Object Oriented Programming in C++ COP 3330
Shell Environments.
ASSIGNMENT NO.-2.
Copyrights apply.
D I s , a ·.... l8l8.
CSC 140: Introduction to IT
slides created by Marty Stepp, modified by Jessica Miller
CSCI The UNIX System Shell History and Directory Stacks
CSCI The UNIX System Shell Startup and Variables
Warm Up Give the coordinates and quadrants of each point.
The Linux Command Line Chapter 11
CSCI The UNIX System Shell Substitution and Sequences
Introduction to Computer Organization & Systems
CSCI N207 Data Analysis Using Spreadsheet
I ll I
Andy Wang Object Oriented Programming in C++ COP 3330
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
slides created by Marty Stepp, modified by Jessica Miller
' 1 A ./.\.l+./.\.l
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
Chapter 8 The Bourne Again Shell
Unix Shell Environments
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
CSCI The UNIX System Editing files
Chapter 3: The Shell.
The Linux Command Line Chapter 11
Presentation transcript:

CSCI 330 - The UNIX System Shell: Aliases NIU - Department of Computer Science

Shell Aliases Allows you to assign a name, or alias to command(s) The C Shell Shell Aliases Allows you to assign a name, or alias to command(s) use alias like any other command can rename existing commands check current aliases: % alias CSCI 330 - The UNIX System 2 Copyright Department of Computer Science, Northern Illinois University, 2005 2

To Create an Alias To set alias in bash: alias ll=“ls –al” To set alias in csh: alias ll “ls –al” CSCI 330 - The UNIX System