off REM REM Batch File Name: DRINK1.BAT REM Purpose: Demonstrate the use ECHO,

Size: px
Start display at page:

Download "off REM REM Batch File Name: DRINK1.BAT REM Purpose: Demonstrate the use ECHO,"

Transcription

1 DRINK1.BAT Batch File Name: DRINK1.BAT Purpose: Demonstrate the use ECHO, Demonstrate the use of Demonstrate the use of the environment variable and SET Execution: C:\>DRINK SET cup=pepsi ECHO %cup% is in my cup. SET cup=coke ECHO %cup% is in your cup. DRINK2.BAT Batch File Name: DRINK2.BAT Purpose: Demonstrate the use of command line arguments Execution: C:\>DRINK2 Pepsi Coke ECHO %1 is in my cup. ECHO %2 is in your cup. ECHO %0 is the name of this batch file. DRINK3.BAT Batch File Name: DRINK3.BAT Purpose: Demonstrate the use of command line arguments Demonstrate ECHO. Execution: C:\>DRINK3 Pepsi Coke ECHO %1 is in my cup. %2 is in your cup. ECHO %2 is in my cup. %1 is in your cup. ECHO %0 is the name of this batch file. Batch_Files_Examples#1.dox/p.1

2 NAME1.BAT Batch File Name: NAME1.BAT Purpose: Demonstrate the use of command line arguments and positioning Execution: C:\>NAME1 firstname lastname NOTE: replace firstname lastname with your first and last names. Execute the batch file the first time as above. Execute it a second time as follows: C:\>NAME1 lastname firstname ECHO My name is %1 %2. NAME2.BAT Batch File Name: NAME2.BAT Purpose: Demonstrate the use of environment variables with command line arguments Execution: C:\>NAME2 firstname lastname SET first=%1 SET last=%2 ECHO My name is %1 %2. ECHO My first name is %first%. ECHO My last name is %last%. Batch_Files_Examples#1.dox/p.2

3 CHIPLAB1.BAT Filename: CHIPLAB1.BAT Purpose: Demonstrate the use of a FOR variable Execution: C:\>CHIPLAB1 ECHO There are chocolate chips, potato chips, and computer chips. ECHO Of these... FOR %%a IN (chocolate potato computer) DO echo %%a chips ECHO Which do you think tastes the best? CHIPLAB2.BAT Filename: CHIPLAB2.BAT Purpose: Demonstrate the use of a FOR variable with a command line argument Execution: C:\>CHIPLAB2 CHIPS ECHO There are chocolate %1, potato %1, and computer %1. ECHO Of these... FOR %%a IN (chocolate potato computer) DO echo %%a %1 ECHO Which do you think tastes the best? CHIPLAB3.BAT Filename: CHIPLAB3.BAT Purpose: Demonstrate the use of a FOR variable with a command line argument and with environment variables Execution: C:\>CHIPLAB3 CHIPS SET x=chocolate SET y=potato SET z=computer ECHO There are %x% %1, %y% %1, and %z% %1. ECHO Of these... FOR %%a IN (%x% %y% %z%) DO echo %%a %1 ECHO Which do you think tastes the best? Batch_Files_Examples#1.dox/p.3

4 USINGIF.BAT Filename: USINGIF.BAT Purpose: Demonstrate the use of IF Execution: C:\>USINGIF name NOTE: replace name with your first name This batch file will check to see if you entered your name at the command line as required. If you did not enter a command line argument (i.e. it s blank), it will tell you that you forgot to do so. If you did enter a command line argument, it will thank you for running the program. IF "%1"=="" ECHO You forgot to enter your name at the command line. IF NOT "%1"=="" ECHO Thanks for running this program, %1. IFGOTO1.BAT Filename: IFGOTO1.BAT Purpose: Demonstrate the use of IF, GOTO, and labels Execution: C:\>IFGOTO1 name IF "%1"=="" GOTO BLANK ECHO Thank you for running the %0 program. %1. :BLANK ECHO You forgot to enter your name at the command line. IFGOTO2.BAT Filename: IFGOGO2.BAT Purpose: Demonstrate the use of IF, GOTO, and labels Execution: C:\>IFGOTO2 itad SET course=%1 IF NOT "%course%"=="csnt" GOTO CHANGE :CHANGE ECHO Before change, course=%course% SET course=csnt ECHO This course is %course% 117. Batch_Files_Examples#1.dox/p.4

5 CALLIT1.BAT Batch File Name: CALLIT1.BAT Purpose: Demonstrate the use of the CALL and PAUSE statements Execution: C:\>CALLIT1 ECHO Pause then run the batch file %0 PAUSE CALL CHIPLAB1 ECHO CHIPLAB1.BAT has finished executing. Now we're back in CALLIT1.BAT CALLIT2.BAT Batch File Name: CALLIT2.BAT Purpose: Demonstrate the use of the CALL statement with a pass-through parameter Execution: C:\>CALLIT2 CHIPS ECHO Pause then run the batchfile CHIPLAB2.BAT PAUSE CALL CHIPLAB2 %1 ECHO CHIPLAB2.BAT has finished executing. Now we're back in CALLIT2.BAT CALLIT3.BAT Batch File Name: CALLIT3.BAT Purpose: Demonstrate the use of the CALL statement with a pass-through parameter Execution: C:\>CALLIT3 CSNT117 PC TECH FUNDAMENTALS firstname lastname ECHO Pause then run the batchfile NAME1.BAT PAUSE CALL NAME1 %5 %6 ECHO NAME1.BAT has finished executing. Now back in CALLIT3.BAT Batch_Files_Examples#1.dox/p.5

6 HISAIL.BAT Batch File Name: HISAIL.BAT Purpose: Demonstrate the use of concatenation and the FOR statement Execution: C:\>HISAIL SET val=hi :sub1 FOR %%a IN (%val%) DO ECHO %%a IF "%val%"=="hihihihihihihihihihihihihihihihihihihihi" GOTO sub2 SET val=%val%hi GOTO sub1 :sub2 ECHO! ECHO! ECHO \ / ECHO \ O O O O / ECHO \ / ECHO ECHO AHOY THERE MATEY! CHOOSE.BAT Name of batch file: CHOOSE.BAT Purpose: To Demonstrate the use of the CHOICE command MD C:\Batch CD C:\ CHOICE /M "Do you want to change to the Batch subdirectory" IF errorlevel 2 GOTO no IF errorlevel 1 GOTO yes :yes CD C:\Batch :no ECHO You chose to stay in the root directory. Batch_Files_Examples#1.dox/p.6

7 RUTHERE.BAT Batch File Name: RUTHERE.BAT Purpose: Show how to check to see if a directory exits Execution: C:\>RUTHERE subdirectory NOTE: replace subdirectory with the name (including path) of a subdirectory (try names that do and do not currently exist) IF EXIST %1\nul GOTO THERE ECHO directory %1 does not exist CHOICE /M "Do you want to create this directory" IF ERRORLEVEL 2 MD %1 ECHO directory %1 created. DIR %1 :THERE ECHO directory %1 exists. Batch_Files_Examples#1.dox/p.7

8 COFFEE.BAT Name of batch file: COFFEE.BAT Purpose: To Demonstrate the use of the CHOICE, CALL, and errorlevel commands, along with environment variables and labels CHOICE /C /T 5 /D 1 /M "Choose your poison (1=Americano, 2=Vanilla, 3=Mocha, 4=Irish Cream, 5=Hazelnut)" IF errorlevel 5 GOTO Hazelnut IF errorlevel 4 GOTO IrishCrm IF errorlevel 3 GOTO Mocha IF errorlevel 2 GOTO Vanilla :Americano SET type=americano SET type2= GOTO Order :Vanilla SET type=vanilla SET type2=latte GOTO Order :Mocha SET type=mocha SET type2=latte GOTO Order :IrishCrm SET type=irishcream SET type2=latte GOTO Order :Hazelnut SET type=hazelnut SET type2=latte :Order CALL SIZE ECHO You chose a %size% %type% %type2%. ECHO Thank you for your order. SIZE.BAT CHOICE /C 1234 /T 5 /M "What size drink do you want (1=Short, 2=Tall, 3=Grande, 4=Venti)" IF errorlevel 4 GOTO Venti IF errorlevel 3 GOTO Grande IF errorlevel 2 GOTO Tall :Short SET size=short :Tall SET size=tall :Grande SET size=grande :Venti SET size=venti Batch_Files_Examples#1.dox/p.8

Advanced Batch Files. Ch 11 1

Advanced Batch Files. Ch 11 1 Advanced Batch Files Ch 11 1 Overview Quick review of batch file commands learned in earlier chapters. Ch 11 2 Overview Advanced features of these commands will be explained and used. Ch 11 3 Overview

More information

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur.

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur. Automatic Logon Autologon This feature allows you to pre-configure a list of IP addresses that will be able to connect and log on without any User ID, Password or Domain prompting when using the Georgia

More information

False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines

False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines Instructions: This is an open book pretest. Answer all questions. There are three sections. There are a total of five question pages. The time limit is two hours. Section one: Select only one answer for

More information

1 of 5 17/06/2013 9:10 AM

1 of 5 17/06/2013 9:10 AM 1 of 5 17/06/2013 9:10 AM 2 of 5 17/06/2013 9:10 AM RUNNING ADJUSTMENTS BATCH PROCESSING FROM THE COMMAND LINE Using the STAR*NET Batch File Feature STAR*NET can be executed from a command line and told

More information

Programming Fundamentals

Programming Fundamentals Programming Fundamentals Computers are really very dumb machines -- they only do what they are told to do. Most computers perform their operations on a very primitive level. The basic operations of a computer

More information

Disk Operating System

Disk Operating System Disk Operating System DOS stands for Disk Operating System. DOS controls the computer s hardware and provides an environment for programs to run. This system program must always be present when working

More information

UNIX Tutorial One

UNIX Tutorial One 1.1 Listing files and directories ls (list) When you first login, your current working directory is your home directory. Your home directory has the same name as your user-name, for example, ee91ab, and

More information

Internal Commands COPY and TYPE

Internal Commands COPY and TYPE Internal Commands COPY and TYPE Ch 5 1 Overview Will review file-naming rules. Ch 5 2 Overview Will learn some internal commands that can be used to manage and manipulate files. Ch 5 3 Overview The value

More information

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2 COURSE OUTLINE Division of Business and Technology NET 239 WAN Data Communications Approved Catalog Description Covers the technology and terminology required to use routing and switching technologies

More information

Multiple.minecraft file Organiser + Backuper - Batch File

Multiple.minecraft file Organiser + Backuper - Batch File Downloaded from: justpaste.it/gzhe Multiple.minecraft file Organiser + Backuper - Batch File by Pixel Zerg title Minecraft Files Organiser By Pixel Zerg :Menu echo MENU echo 1 to create an empty new preset

More information

CSCI 1100L: Topics in Computing Lab Lab 3: Windows Command Prompt

CSCI 1100L: Topics in Computing Lab Lab 3: Windows Command Prompt CSCI 1100L: Topics in Computing Lab Lab 3: Windows Command Prompt Purpose: So far in Lab, we ve played around and learned more about Windows 10 and the WIMP (Windows- Icons, Menus, Pointers) interface.

More information

C:\> command prompt DOS prompt cursor

C:\> command prompt DOS prompt cursor MS-DOS Basics The Command Prompt When you first turn on your computer, you will see some cryptic information flash by. MS-DOS displays this information to let you know how it is configuring your computer.

More information

PROGRAMMING PROJECT ONE DEVELOPING A SHELL

PROGRAMMING PROJECT ONE DEVELOPING A SHELL PROGRAMMING PROJECT ONE DEVELOPING A SHELL William Stallings Copyright 2011 Supplement to Operating Systems, Seventh Edition Prentice Hall 2011 ISBN: 013230998X http://williamstallings.com/os/os7e.html

More information

Online Help. How Can SIMOTION SCOUT Be Used Without Starting SCOUT?

Online Help. How Can SIMOTION SCOUT Be Used Without Starting SCOUT? How Can SIMOTION SCOUT Be Used Without Starting SCOUT? Table of Contents Table of Contents 1 Question... 3 2 Solution... 4 Ausgabe 06/2005 Edition 2/6 Question 1 Question The SIMOTION SCOUT online help

More information

Introduction. 1. Deactivating Anti-Executable. 2. Updating the virus definitions. 3. Reactivating Anti-Executable.

Introduction. 1. Deactivating Anti-Executable. 2. Updating the virus definitions. 3. Reactivating Anti-Executable. Introduction The process of updating virus definitions on workstations protected by Faronics Anti-Executable Enterprise involves three fundamental steps: 1. Deactivating Anti-Executable. 2. Updating the

More information

Lab - Common Windows CLI Commands

Lab - Common Windows CLI Commands Introduction In this lab, you will use CLI commands to manage files and folders in Windows. Recommended Equipment A computer running Windows Step 1: Access the Windows command prompt. a. Log on to a computer

More information

4. Write sets of directions for how to check for direct variation. How to check for direct variation by analyzing the graph :

4. Write sets of directions for how to check for direct variation. How to check for direct variation by analyzing the graph : Name Direct Variations There are many relationships that two variables can have. One of these relationships is called a direct variation. Use the description and example of direct variation to help you

More information

An Introduction to DOS

An Introduction to DOS An Introduction to DOS Contents 1. Introduction........................................................................................ 1 2. The file system......................................................................................

More information

User Document. Adobe Acrobat for Tivoli Software Distribution

User Document. Adobe Acrobat for Tivoli Software Distribution User Document i User Document Table of Contents Product Name....................................................1 Document Overview............................................. 1 References.......................................................1

More information

Unix as a Platform Exercises. Course Code: OS-01-UNXPLAT

Unix as a Platform Exercises. Course Code: OS-01-UNXPLAT Unix as a Platform Exercises Course Code: OS-01-UNXPLAT Working with Unix 1. Use the on-line manual page to determine the option for cat, which causes nonprintable characters to be displayed. Run the command

More information

Unix Filesystem. January 26 th, 2004 Class Meeting 2

Unix Filesystem. January 26 th, 2004 Class Meeting 2 Unix Filesystem January 26 th, 2004 Class Meeting 2 * Notes adapted by Christian Allgood from previous work by other members of the CS faculty at Virginia Tech Unix Filesystem! The filesystem is your interface

More information

BATCH FILE PROGRAMMING

BATCH FILE PROGRAMMING BATCH FILE PROGRAMMING Chapter 1.- Introduction Chapter 2.- The DOS Command Structure Chapter 3.- The Batch Processor Chapter 4.- Special Batch Structures Chapter 5.- The Multiple Batch Files Chapter 6.-

More information

Notes on Chapter 1 Variables and String

Notes on Chapter 1 Variables and String Notes on Chapter 1 Variables and String Note 0: There are two things in Python; variables which can hold data and the data itself. The data itself consists of different kinds of data. These include numbers,

More information

Introduction to Linux

Introduction to Linux Introduction to Linux The command-line interface A command-line interface (CLI) is a type of interface, that is, a way to interact with a computer. Window systems, punched cards or a bunch of dials, buttons

More information

Introduction. 1. Deactivating Anti-Executable Enterprise. 2. Updating the virus definitions 3. Reactivating Anti-Executable Enterprise.

Introduction. 1. Deactivating Anti-Executable Enterprise. 2. Updating the virus definitions 3. Reactivating Anti-Executable Enterprise. Introduction The process of updating virus definitions on workstations protected by Faronics Anti-Executable Enterprise involves three fundamental steps: 1. Deactivating Anti-Executable Enterprise. 2.

More information

- complete the demand schedule currently in memory (as part of the plant model); or

- complete the demand schedule currently in memory (as part of the plant model); or page G7 - complete the demand schedule currently in memory (as part of the plant model); or get a different demand schedule from the.disk. In this case, the demand schedule from the disk will replace the

More information

Direct Variations DIRECT AND INVERSE VARIATIONS 19. Name

Direct Variations DIRECT AND INVERSE VARIATIONS 19. Name DIRECT AND INVERSE VARIATIONS 19 Direct Variations Name Of the many relationships that two variables can have, one category is called a direct variation. Use the description and example of direct variation

More information

Command Line Interface The basics

Command Line Interface The basics Command Line Interface The basics Marco Berghoff, SCC, KIT Steinbuch Centre for Computing (SCC) Funding: www.bwhpc-c5.de Motivation In the Beginning was the Command Line by Neal Stephenson In contrast

More information

1/20/13 Git tutorial. Git tutorial. Mike Nolta. file:///users/nolta/github/reveal.js/git.html?print-paper#/ 1/31

1/20/13 Git tutorial. Git tutorial. Mike Nolta. file:///users/nolta/github/reveal.js/git.html?print-paper#/ 1/31 Git tutorial Mike Nolta file:///users/nolta/github/reveal.js/git.html?print-paper#/ 1/31 1. Basics file:///users/nolta/github/reveal.js/git.html?print-paper#/ 2/31 Tell git who you are $ git config --global

More information

Exam Express Exam EE0-411 voice xml application developer exam Version: 5.0 [ Total Questions: 118 ]

Exam Express Exam EE0-411 voice xml application developer exam Version: 5.0 [ Total Questions: 118 ] s@lm@n Exam Express Exam EE0-411 voice xml application developer exam Version: 5.0 [ Total Questions: 118 ] Topic break down Topic No. of Questions Topic 0: A 59 Topic 1: B 59 2 Topic 0, A A Exam Express

More information

Using

Using Using www.bcidaho.net Blue Cross supports a wide variety of clients and protocols for uploading and downloading files from our servers, including web-based tools, traditional clients and batch processing.

More information

Introduction to Linux Spring 2014, Section 02, Lecture 3 Jason Tang

Introduction to Linux Spring 2014, Section 02, Lecture 3 Jason Tang Introduction to Linux Spring 2014, Section 02, Lecture 3 Jason Tang Topics What is an Operating System Overview of Linux Linux commands Shell Submit system What is an Operating System? Special type of

More information

Grade 2 I Can Math Statements

Grade 2 I Can Math Statements Grade 2 I Can Math Statements Operations and Algebraic Thinking 2.OA.1 I can solve one- and two-step addition and subtraction word problems within 100. Visualize Retell Think Share Your Strategies More

More information

Fundamental 2. Lec#04. Shugofa Hassani

Fundamental 2. Lec#04. Shugofa Hassani Fundamental 2 Lec#04 Shugofa Hassani Session Objective To distinguish between commercial and non commercial operating system To understand Ms.- DOS operating system and it s type. To practice basic DOS

More information

Performing multiple simulations using CMF parameters with GEMPACK 11.2: the mystery of Horridge's kink

Performing multiple simulations using CMF parameters with GEMPACK 11.2: the mystery of Horridge's kink Performing multiple simulations using CMF parameters with GEMPACK 11.2: the mystery of Horridge's kink Michael Jerie Centre of Policy Studies, Monash University 12th June 2013 GTAP 16th Annual Conference

More information

CS3: Introduction to Symbolic Programming. Lecture 14: Lists.

CS3: Introduction to Symbolic Programming. Lecture 14: Lists. CS3: Introduction to Symbolic Programming Lecture 14: Lists Fall 2006 Nate Titterton nate@berkeley.edu Schedule 13 14 15 16 April 16-20 April 23-27 Apr 30-May 4 May 7 Thursday, May 17 Lecture: CS3 Projects,

More information

1. Open VirtualBox and start your linux VM. Boot the machine and log in with the user account you created in Lab #1. Open the Terminal application.

1. Open VirtualBox and start your linux VM. Boot the machine and log in with the user account you created in Lab #1. Open the Terminal application. CIT 210L Name: Lab #2 1. Open VirtualBox and start your linux VM. Boot the machine and log in with the user account you created in Lab #1. Open the Terminal application. 2. Listing installed packages -

More information

Programming Style & Firmware Standards

Programming Style & Firmware Standards Programming Style & Firmware Standards Numerous opinions exist in academia and industry regarding programming style rules. One common opinion holds true, through poorly structured and poorly commented

More information

Basic Unix Command. It is used to see the manual of the various command. It helps in selecting the correct options

Basic Unix Command. It is used to see the manual of the various command. It helps in selecting the correct options Basic Unix Command The Unix command has the following common pattern command_name options argument(s) Here we are trying to give some of the basic unix command in Unix Information Related man It is used

More information

IT501 Java Lab 5 24 Oct Iterating over Collections: simple and complex

IT501 Java Lab 5 24 Oct Iterating over Collections: simple and complex IT501 Java Lab 5 24 Oct. 2012 Iterating over Collections: simple and complex Purpose: Iterating over Collection objects In this lab you will compute statistics on lists of numbers. In some ways this is

More information

INDEX OF COMMANDS. ATTRIB [+r] [x:]{file} [-r] 92, 180. BACKUP x:[{file}] y:[/d][/m][/s] BASIC [[x:]{file}] BASICA [[x:]{file}] CD [[x:]\{name}]

INDEX OF COMMANDS. ATTRIB [+r] [x:]{file} [-r] 92, 180. BACKUP x:[{file}] y:[/d][/m][/s] BASIC [[x:]{file}] BASICA [[x:]{file}] CD [[x:]\{name}] INDEX OF COMMANDS In this index of commands, anything between square brackets indicates an alternative or a facultative addition to the command in question; "x:" and "y:" mean the designation of a drive;

More information

Unix File System. Class Meeting 2. * Notes adapted by Joy Mukherjee from previous work by other members of the CS faculty at Virginia Tech

Unix File System. Class Meeting 2. * Notes adapted by Joy Mukherjee from previous work by other members of the CS faculty at Virginia Tech Unix File System Class Meeting 2 * Notes adapted by Joy Mukherjee from previous work by other members of the CS faculty at Virginia Tech Unix File System The file system is your interface to: physical

More information

$Id: asg4-shell-tree.mm,v :36: $

$Id: asg4-shell-tree.mm,v :36: $ cmps012b 2002q2 Assignment 4 Shell and Tree Structure page 1 $Id: asg4-shell-tree.mm,v 323.32 2002-05-08 15:36:09-07 - - $ 1. Overview A data structure that is useful in many applications is the Tree.

More information

TECH 4272 Operating Systems

TECH 4272 Operating Systems TECH 4272 Lecture 3 2 Todd S. Canaday Adjunct Professor Herff College of Engineering sudo sudo is a program for Unix like computer operating systems that allows users to run programs with the security

More information

UNIX Essentials Featuring Solaris 10 Op System

UNIX Essentials Featuring Solaris 10 Op System A Active Window... 7:11 Application Development Tools... 7:7 Application Manager... 7:4 Architectures - Supported - UNIX... 1:13 Arithmetic Expansion... 9:10 B Background Processing... 3:14 Background

More information

Excel QuickGuide 1 The AVERAGE Function

Excel QuickGuide 1 The AVERAGE Function 8 USING EXCEL FUNCTIONS: COMPUTING AVERAGES Excel QuickGuide 1 The AVERAGE Function What the AVERAGE Function Does The AVERAGE function takes a set of values and computes the arithmetic mean, which is

More information

Basic DOS Commands MCQ

Basic DOS Commands MCQ 1. An entire path name, consisting of several sub-directory names can contain upto A) 13 character B) 36 character C) 63 character D) 53 character 2. In which year the first operating system was developed

More information

Dalhousie University CSCI 2132 Software Development Winter 2018 Lab 8, March 22

Dalhousie University CSCI 2132 Software Development Winter 2018 Lab 8, March 22 Dalhousie University CSCI 2132 Software Development Winter 2018 Lab 8, March 22 In this lab, you will first learn more about git. After that, you will get some practice on the make utility and learn more

More information

The Filer Administrators Manual

The Filer Administrators Manual The Filer Administrators Manual Table of Contents Overview 3 User Management 4 Create a Cabinet 5 Defining Indexes 5 Masks 6 Assigning Users 7 Grid labels 8 Advanced Options 9 Windows API Call Calling

More information

Setup Guide: Hospitality

Setup Guide: Hospitality Setup Guide: Hospitality Version: 0.1 29/03/2017 Welcome Thank you for choosing intelligentpos. With this step by step guide, you will be able to master the basics of intelligentpos and be trading from

More information

CHAPTER 18. Page Tracking Script

CHAPTER 18. Page Tracking Script CHAPTER 18 Page Tracking Script OVERVIEW The page tracking script follows a user from page to page on a particular site. In addition to tracking which pages a user views, the script records the major category

More information

Getting the Shaders Once the game has been run and all shaders have been generated the next step is to get the shaders off of the mobile device.

Getting the Shaders Once the game has been run and all shaders have been generated the next step is to get the shaders off of the mobile device. Setup Before running the game on the mobile device (Android or ios) you will need to have the remote Shader Compiler running on a PC. The mobile device system CFG files (system_android_es3.cfg and system_ios_ios.cfg)

More information

Manual Shell Script Linux If Not Equal String Comparison

Manual Shell Script Linux If Not Equal String Comparison Manual Shell Script Linux If Not Equal String Comparison From the Linux ping manual: If mkdir d failed, and returned a non-0 exit code, Bash will skip the next command, and we will stay in the current

More information

Upgrade EZ-Pay V6 Guide

Upgrade EZ-Pay V6 Guide Upgrade EZ-Pay V6 Guide Who should use this patch Users who are using versions 3.0.4 of EZ-Pay can upgrade to version 3.1.0 Where to get this patch Download it from http://www.hr21.com.hk/ -> Products->

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/15/CSc 2 0 1 5 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

HP Online ROM Flash User Guide. July 2004 (Ninth Edition) Part Number

HP Online ROM Flash User Guide. July 2004 (Ninth Edition) Part Number HP Online ROM Flash User Guide July 2004 (Ninth Edition) Part Number 216315-009 Copyright 2000, 2004 Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required

More information

UNIX COMMANDS AND SHELLS. UNIX Programming 2015 Fall by Euiseong Seo

UNIX COMMANDS AND SHELLS. UNIX Programming 2015 Fall by Euiseong Seo UNIX COMMANDS AND SHELLS UNIX Programming 2015 Fall by Euiseong Seo What is a Shell? A system program that allows a user to execute Shell functions (internal commands) Other programs (external commands)

More information

RCS Tutorial. Dongsoo S. Kim

RCS Tutorial. Dongsoo S. Kim RCS Tutorial Dongsoo S. Kim RCS Subdirectory The following examples will use the file our_file.txt. By default, version files when initially checked-in are placed in the same directory as the file being

More information

Sensing From Within. Week #4 Prof. Ryan Kastner

Sensing From Within. Week #4 Prof. Ryan Kastner Sensing From Within Week #4 Prof. Ryan Kastner Five Senses for Humans? Our bodies have special sensory receptors Example: Taste receptors are concentrated mostly on tongue Exteroceptors and Interoceptors

More information

Introducing Simple Macros

Introducing Simple Macros 28 Introducing Simple Macros Macros Overview, 28-2 The Structure of a Global Macro, 28-4 Example of a Global Macro, 28-5 Creating a Global Macro, 28-6 Invoking a Global Macro, 28-7 Adding Control Statements,

More information

ADVANCED LINUX SYSTEM ADMINISTRATION

ADVANCED LINUX SYSTEM ADMINISTRATION Lab Assignment 1 Corresponding to Topic 2, The Command Line L1 Main goals To get used to the command line. To gain basic skills with the system shell. To understand some of the basic tools of system administration.

More information

HELP Use the help command to list all the following supported commands:

HELP Use the help command to list all the following supported commands: Available commands within Windows Recovery Console The following commands are available within the Windows Recovery Console. The commands are not case-sensitive. HELP Use the help command to list all the

More information

Working with Shell Scripting. Daniel Balagué

Working with Shell Scripting. Daniel Balagué Working with Shell Scripting Daniel Balagué Editing Text Files We offer many text editors in the HPC cluster. Command-Line Interface (CLI) editors: vi / vim nano (very intuitive and easy to use if you

More information

Long Filename Specification

Long Filename Specification Long Filename Specification by vindaci fourth release First Release: November 18th, 1996 Last Update: January 6th, 1998 (Document readability update) Compatibility Long filename (here on forth referred

More information

Modifying image file contents with Ghost Explorer. This section includes the following topics:

Modifying image file contents with Ghost Explorer. This section includes the following topics: Modifying image file contents with Ghost Explorer This section includes the following topics: Using Ghost Explorer Viewing image files and their properties Launching a file Extracting a file or directory

More information

Shell Programming Overview

Shell Programming Overview Overview Shell programming is a way of taking several command line instructions that you would use in a Unix command prompt and incorporating them into one program. There are many versions of Unix. Some

More information

More Scripting Techniques Scripting Process Example Script

More Scripting Techniques Scripting Process Example Script More Scripting Techniques Scripting Process Example Script 1 arguments to scripts positional parameters input using read exit status test program, also known as [ if statements error messages 2 case statement

More information

Controlling Macro Flow

Controlling Macro Flow 30 Controlling Macro Flow Control Statement Overview, 30-2 IF, ELSEIF, ELSE,, 30-2 DO,, 30-3 WHILE, ENDWHILE, 30-4 NEXT, 30-5 BREAK, 30-5 GOTO, MLABEL, 30-6 Invoking Macros from Within Macros, 30-7 CALL,

More information

6. Distributed File System

6. Distributed File System /15 6. Distributed File System for Subsets of Objects Chuanhai Liu Department of Statistics, Purdue University 2016 2/15 Table of Contents 6.1 More simple SupR additions.............................. 3

More information

Essential Linux Shell Commands

Essential Linux Shell Commands Essential Linux Shell Commands Special Characters Quoting and Escaping Change Directory Show Current Directory List Directory Contents Working with Files Working with Directories Special Characters There

More information

Project 1: Implementing a Shell

Project 1: Implementing a Shell Assigned: August 28, 2015, 12:20am Due: September 21, 2015, 11:59:59pm Project 1: Implementing a Shell Purpose The purpose of this project is to familiarize you with the mechanics of process control through

More information

ITBraindumps. Latest IT Braindumps study guide

ITBraindumps.  Latest IT Braindumps study guide ITBraindumps http://www.itbraindumps.com Latest IT Braindumps study guide Exam : LFCS Title : Linux Foundation Certified System Administrator Vendor : Linux Foundation Version : DEMO Get Latest & Valid

More information

USING THE OOSIML/JAVA COMPILER. With the Command Window

USING THE OOSIML/JAVA COMPILER. With the Command Window USING THE OOSIML/JAVA COMPILER With the Command Window On Windows Operating System José M. Garrido Department of Computer Science December 2017 College of Computing and Software Engineering Kennesaw State

More information

DOS INT 21h - DOS Function Codes

DOS INT 21h - DOS Function Codes Back To Home DOS INT 21h - DOS Function Codes The follow abridged list of DOS interrupts has been extracted from a large list compiled by Ralf Brown. These are available on any Simtel mirror (e.g. sunsite.anu.edu.au)

More information

MAILMERGE WORD MESSAGES

MAILMERGE WORD MESSAGES MAILMERGE WORD 2007 It is recommended that Excel spreadsheets are used as source files and created with separate columns for each field, e.g. FirstName, LastName, Title, Address1, Address2, City, State,

More information

Conventions in this tutorial

Conventions in this tutorial This document provides an exercise using Digi JumpStart for Windows Embedded CE 6.0. This document shows how to develop, run, and debug a simple application on your target hardware platform. This tutorial

More information

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP Date: 18/04/2013 Procedure: How to disable or Stop Auto CHKDSK During Windows Startup Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 HOW TO DISABLE OR STOP AUTO CHKDSK DURING

More information

FINAL REVIEW 13. December 4, Sample Final Questions

FINAL REVIEW 13. December 4, Sample Final Questions FINAL REVIEW 13 COMPUTER SCIENCE 61A December 4, 2014 1 Sample Final Questions 1.1 It s holiday season! For each of the expressions in the tables below, write the output displayed by the interactive Python

More information

Ultimate DOS. Command Summary. Gideon Zweijtzer. All work Copyright 2013 by Gideon s Logic Architectures All rights reserved.

Ultimate DOS. Command Summary. Gideon Zweijtzer. All work Copyright 2013 by Gideon s Logic Architectures All rights reserved. Gideon Zweijtzer All work Copyright 2013 by Gideon s Logic Architectures All rights reserved. Version 1.0, February 1 st 2013 Table of Contents 1. Introduction... 3 1.1. Context... 3 1.2. Purpose of this

More information

PostMaster Enterprise v8.xx Setup Guide Windows

PostMaster Enterprise v8.xx Setup Guide Windows PostMaster Enterprise v8.xx Setup Guide Windows How Do I Carry Out A Fresh Setup Of PMEv8 The complete installation of PMEv8 covers the following steps Start PMEv8 How Do I Carry Out A Fresh Setup Of PMEv8

More information

5/8/2012. Creating and Changing Directories Chapter 7

5/8/2012. Creating and Changing Directories Chapter 7 Creating and Changing Directories Chapter 7 Types of files File systems concepts Using directories to create order. Managing files in directories. Using pathnames to manage files in directories. Managing

More information

Honors Computer Science Python Mr. Clausen Programs 4A, 4B, 4C, 4D, 4E, 4F

Honors Computer Science Python Mr. Clausen Programs 4A, 4B, 4C, 4D, 4E, 4F PROGRAM 4A Full Names (25 points) Honors Computer Science Python Mr. Clausen Programs 4A, 4B, 4C, 4D, 4E, 4F This program should ask the user for their full name: first name, a space, middle name, a space,

More information

Common CVS Command Summary

Common CVS Command Summary ESD Software Engineering Group CVS Cheat-sheet SLAC Detailed SLAC Computing Software Software Detailed CVS This page outlines some of the common CVS commands as they may be used in the SLAC ESD Software

More information

example: name1=jan name2=mike export name1 In this example, name1 is an environmental variable while name2 is a local variable.

example: name1=jan name2=mike export name1 In this example, name1 is an environmental variable while name2 is a local variable. Bourne Shell Programming Variables - creating and assigning variables Bourne shell use the set and unset to create and assign values to variables or typing the variable name, an equal sign and the value

More information

Fundamentals of Python: First Programs. Chapter 4: Text Files

Fundamentals of Python: First Programs. Chapter 4: Text Files Fundamentals of Python: First Programs Chapter 4: Text Files Objectives After completing this section, you will be able to Open a text file for output and write strings or numbers to the file Open a text

More information

Introduction to Using OSCER s Linux Cluster Supercomputer This exercise will help you learn to use Sooner, the

Introduction to Using OSCER s Linux Cluster Supercomputer   This exercise will help you learn to use Sooner, the Introduction to Using OSCER s Linux Cluster Supercomputer http://www.oscer.ou.edu/education.php This exercise will help you learn to use Sooner, the Linux cluster supercomputer administered by the OU Supercomputing

More information

PV-WAVE 8.5 Installation Guide

PV-WAVE 8.5 Installation Guide PV-WAVE 8.5 Installation Guide Introduction PV-WAVE is an array oriented fourth-generation programming language used by engineers, scientists, researchers, business analysts and software developers to

More information

Index of Names, Concepts and Symbols

Index of Names, Concepts and Symbols Index of Names, Concepts and Symbols Active drive - 17, 82 Active line - 136 Address - 41 Advanced Disk BASIC - 58 Alternate mode - 69 ALT key - 16, 68, 80, 100, 104 ANSI - 65, 99 ANSI.SYS - 99 Apple II

More information

1. Git. Robert Snapp

1. Git. Robert Snapp . Git Robert Snapp snapp@cs.uvm.edu Department of Computer Science University of Vermont CS 3 (UVM). Git Fall 0 / Git CS 3 (UVM). Git Fall 0 / Setting your defaults in /.git > git config --global user.name

More information

Updating Hosted Customer Instances on the OnPoint Production Server By Peter Westphal

Updating Hosted Customer Instances on the OnPoint Production Server By Peter Westphal Updating Hosted Customer Instances on the OnPoint Production Server By Peter Westphal Note: The following instructions use version 1.5.2.x of OnPoint Course Manager ( OPCM ) and v1.5.2 of OnPoint Convent

More information

Files

Files http://www.cs.fsu.edu/~langley/cop3353-2013-1/reveal.js-2013-02-11/02.html?print-pdf 02/11/2013 10:55 AM Files A normal "flat" file is a collection of information. It's usually stored somewhere reasonably

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/14/CSc 2 0 1 4 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

About me! RajeshKumarIN

About me! RajeshKumarIN Chef Server About me! RajeshKumarIN RajeshKumarIN RajeshKumarIN DevOps@RajeshKumar.XYZ Prerequisites An x86_64 compatible system architecture; Red Hat Enterprise Linux and CentOS may require updates prior

More information

Disk Operating System

Disk Operating System In the name of Allah Islamic University of Gaza Faculty of Engineering Computer Engineering Department Introduction To Computer Lab Lab # 1 Disk Operating System El-masry 2013 Objective To be familiar

More information

Week 2 Lecture 3. Unix

Week 2 Lecture 3. Unix Lecture 3 Unix Terminal and Shell 2 Terminal Prompt Command Argument Result 3 Shell Intro A system program that allows a user to execute: shell functions (e.g., ls -la) other programs (e.g., eclipse) shell

More information

11/10/2011. Directory Structures (continued)

11/10/2011. Directory Structures (continued) 1 2 3 4 Guide to Parallel Operating Systems with Chapter 6 Directory Commands Objectives Describe directory structures Display directory structures Navigate directory structures Work with directories Work

More information

Grade 7 Math LESSON 14: MORE PROBLEMS INVOLVING REAL NUMBERS TEACHING GUIDE

Grade 7 Math LESSON 14: MORE PROBLEMS INVOLVING REAL NUMBERS TEACHING GUIDE Lesson 14: More Problems Involving Real Numbers Time: 1.5 hours Prerequisite Concepts: Whole numbers, Integers, Rational Numbers, Real Numbers, Sets Objectives: In this lesson, you are expected to: 1.

More information

VS-Link. Dos Version. CB Electronics

VS-Link. Dos Version. CB Electronics CB Electronics VS-Link Dos Version CB Electronics Loddonside, Lands End House, Beggars Hill Road, Charvil, Berks RG10 0UD, UK Tel: +44 (0)118 9320345, Fax: +44 (0)118 9320346 URL: www.colinbroad.com E-mail:

More information

2) clear :- It clears the terminal screen. Syntax :- clear

2) clear :- It clears the terminal screen. Syntax :- clear 1) cal :- Displays a calendar Syntax:- cal [options] [ month ] [year] cal displays a simple calendar. If arguments are not specified, the current month is displayed. In addition to cal, the ncal command

More information

Newforma Contact Directory Quick Reference Guide

Newforma Contact Directory Quick Reference Guide Newforma Contact Directory Quick Reference Guide This topic provides a reference for the Newforma Contact Directory. Purpose The Newforma Contact Directory gives users access to the central list of companies

More information