Note: You Will Not Be Able to Run Terminal from This PDF

Total Page:16

File Type:pdf, Size:1020Kb

Note: You Will Not Be Able to Run Terminal from This PDF MAC’S TERMINAL PRESENTED ON MARCH 8, 2016 BY BURT STEPHENS, OMUG MEMBER Note: You will not be able to run Terminal from this PDF. You are encouraged to try Terminal on your computer. Music: From the Terminal Movie, John Williams Conducting GETTING UNDER THE HOOD ABOUT TERMINAL • Included with All Versions of Macs’ OS X • Works under the hood (by providing an Interface to control the UNIX Operating System • Uses a Command Line rather than a Graphic Interface • “Terminal” is a terminal emulator - the devices people used in the days of mainframe computers http://www.macworld.co.uk/feature/mac-software/get-more-out-of-os-x-terminal-3608274/ SOME THINGS YOU CAN DO • Show Hidden Files (defaults write com.apple.finder AppleShowAllFiles TRUE) • Disable Window Animations (defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false) • Change Screenshot Formats (defaults write com.apple.screencapture type file-extension) • Show File Path Info (defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES) • Erase Free Hard Drive Space Securely (diskutil secureErase freespace 3/Volumes/hard-drive-name) OR ( sudo rm -rf /) • Enable AirDrop Over Ethernet (defaults write com.apple.NetworkBrowser BrowseAllInterfaces - bool true) How to open the command line • On OS X, open your Applications folder • Then open the Utilities folder • Then Open the Terminal application. • You may want to add this to your dock. • OR you can launch terminal by using Spotlight search in OS X, searching for “terminal”. SOME BASIC • cd - change directory TERMINAL COMMANDS • mkdir - make directory • pwd - path of current directory • touch - create multiple files • cp - copy • ls - list • mv - move (replace) • rm - remove or delete • open - opens a file • clear - clear the window http://www.macworld.co.uk/feature/mac-software/get-more-out-of-os-x-terminal-3608274/ FORMAT OF A COMMAND LINE •Command •Argument •Flags INSTANTLY GENERATE A CALENDAR COMMAND: CAL MONTH YEAR (CAL 3 2016) NAVIGATING TO FOLDERS EXAMPLE: CD /APPLICATIONS/UTILITIES THEN LS LIST CONTENTS OF DIRECTORY LIST - LS; VIEW IN A LIST FORMAT - LS -L ENABLE AIRDROP ON OLDER MACS AirDrop sends files between Macs quickly and easily. Trouble is, it’s only on WiFi and on more recent Macs. If your Mac doesn’t currently support AirDrop, you can enter the following command to use it, as well as to use it over ethernet: $ defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool TRUE You’ll need to restart the Finder, the quickest way is to use the killall command which will restart it: $ killall Finder To revert the changes, enter: $ defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool REBUILD SPOTLIGHT Spotlight can occasionally not work as well as we’d like. Sometimes, we just need to tell Spotlight to create a new index so it can find files as fast and efficiently as possible. To do this: $ sudo mdutil -E /Volumes/DriveName The above command will delete Spotlight’s index, forcing it to start a new one. SUDO requires a password which is your computer administrative password. It allow the user to execute a command as superuser or to another computer. BUT BE CAREFUL. MAKE YOUR MAC TALK Example of Talking with a Selected Voice: say -v Karen “Hello Jim” Example of Audio Text File Being Saved: say -v Alex -r 175 -o /Users/burtstephens/Music/Young_output.aiff -f / Users/burtstephens/Desktop/young.txt v = voice, -r =reading speed, -o = output type and location, -f = specific text file DOWNLOAD FROM UNSTABLE SERVER Sometimes you are downloading a big file, but it keeps failing, and you always have to hit RESUME. Your problems are over, with this code, if the download stops suddenly, it will automatically restart. This code have a 15kbps speed limit, delete –limit-rate 15k to remove the speed limit. while ! curl -C - -O --limit-rate 15k file-address- goes-here; do sleep 10; done ADDRESS BOOK DEBUG MENU If you have some trouble with Address Book it may be useful to open up the debug menu as well as this use some of the hidden features. Make sure address book is closed first before applying the code. If you want to revert it remove YES in the string. defaults write com.apple.addressbook ABShowDebugMenu -bool YES ENABLE TIME MACHINE ON UNSUPPORTED DRIVES Enable Time Machine to work on unsupported drives such as a NAS. Use with caution as it is unsupported. defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1 SET SCREEN SAVER AS WALLPAPER This command sets the currently selected screen saver as the desktop background. Use command + c or . to stop while in Terminal. Alternatively you can use wallsaver. /System/Library/Frameworks/ScreenSaver.framework/ Resources/ScreenSaverEngine.app/Contents/MacOS/ ScreenSaverEngine -background EJECT A STUCK OR DVD For a Single Optical Drive use the command: drutil eject If you have both an internal and external optical drive: Use either drutil eject internal or drutil eject external Some Terminal Commands to Speed up your Mac in OS X El Capitan 1.. Disable animations when opening and closing windows. 2. Disable animations when opening a Quick Look window. 3. Accelerated playback when adjusting the window size 4. Disable animation when opening the Info window in OS X Finder 5. Disable animations when you open an application from the Dock. 6. Make all animations faster that are used by Mission Control. 7. Disable the delay when you hide the Dock 8. Disable the animation when you sending and replying an e-mail 9. Disable the standard delay in rendering a Web page. 10. The keyboard reacts faster to keystrokes http://www.defaults-write.com/10-terminal-commands-to-speed-up-your-mac-in-os-x-el-capitan/ DEVELOP A LIBRARY OF COMMANDS • Appearance ◦ Transparency ◦ Wallpaper • Applications ◦ App Store ◦ Apple Remote Desktop ◦ Contacts Contacts ◦ iTunes Debug Mode ◦ Mail # Enable ◦ Safari defaults write com.apple.addressbook ABShowDebugMenu -bool true ◦ Sketch ◦ Skim # Disable (Default) ◦ TextEdit defaults write com.apple.addressbook ABShowDebugMenu -bool false • Backup ◦ Time Machine … https://github.com/herrbischoff/awesome-osx-command-line#shells For a large email database that hasn't been optimized for a while, this can provide significant improvements in responsiveness and speed. VACUUM MAIL INDEX TAKING THE NEXT STEPS PROGRAMMING WITH PYTHON Python is a clear and powerful object-oriented programming language, comparable to Perl, Ruby, Scheme, or Java. • Python is pre-installed with latest versions of OS X • (El Capitan comes with Python 2.7) • More serious users with want to download Xcode and Homebrew SIMPLE EXAMPLE WITH PYTHON: LISTING NAMES OF FRIENDS ANOTHER PYTHON EXAMPLE: IF, IF- ELSE, AND ELSE HOMEBREW Homebrew Cask extends Homebrew with support for quickly installing Mac applications like Google Chrome, VLC, and more. No more dragging and dropping applications! •Free and open-source software that simplifies the installation of software on Apple's OS X operating system. •Written in Ruby programming language which comes installed with oS X . X CODE The newest version of Xcode -7 includes everything you need to create apps for iPhone, iPad, Mac, and Apple Watch. The Swift programming language (Version 2) has been updated and is now faster than ever, with great features that make your code even easier to read and write. And with the new playgrounds you can experiment with new APIs or author gorgeous interactive documentation using embedded resources, additional source code, and rich text comments. Xcode’s user interface testing feature can even record your app in action and generate tests for you. To Install X Code: https://itunes.apple.com/us/app/xcode/id497799835?mt=12 OTHER USEFUL APPLICATIONS Automator or Hazel For OS X that implements point-and-click (or drag and drop) creation of workflows for automating repetitive tasks into batches for quicker alteration, saving time and effort over manually changing each file separately. https://www.noodlesoft.com/hazel.php YOU COULD WIN AT TONIGHT’S RAFFLE With Joe Kissell’s Book you will be able to - Figure out what’s preventing a disk from unmounting or ejecting Tell which applications are currently assessing the Internet Rename files in bulk (older OS Xs) Chase File Permissions Automate command-line activities with scripts Terminal Emulators for Mac and iOS Devices OS X • Terminal - default OS X terminal • iTerm2 - open-source terminal specifically for OS X • xterm - default terminal when the X Window System started • MacWise • SecureCRT • SyncTERM - includes serial line terminal • Terminator •ZOC • ZTerm - serial line terminal Mac OS • MacTerminal • Red Ryder • ZTerm BASIC TERMINAL USAGE https://www.youtube.com/watch?v=jDINUSK7rXE https://www.youtube.com/watch?v=MirG-vJOg04 Useful Python Modules See http://ubuntuforums.org/showthread.php?t=522688 Example of use of “say” command with say -v Alex -r 150 -o /Users/burtstephens/ output to stored say -v Music/Goodbye_output.aiff Alex -r 175 -o /Users/ -f /Users/ audio file, burtstephens/Desktop/Bye.txt followed by short quiz using keynote branching features BASH SUDO Question 1 What is the meaning to the computer term -“Bash”? A. a boastful command B. a UNIX shell C. a program that politicians use D. legacy programs developed by Steve Jobs Next Question You are Wrong • In ordinary language BASH means to strike violently or to attack physically or verbally, but this is not a computer term Return You Got it Literally BASH refers to Bourne Again Shell -a command line processor for Unix from the Free Software Foundation. It is the de facto command processor in Linux and Mac. Return You’re Wrong • These days politicians are said to slash and bash their opponents, but this is not a computer term. Return NO! NO! NO! According to Steve Wozniak "Steve Jobs didn't ever code. He wasn't an engineer and he didn't do any original design, but he was technical enough to alter and change and add to other designs." Return Question 2 What do you need to do to use SUDO as part of a terminal command line? A.
Recommended publications
  • Macintoshed Libraries 2.0. INSTITUTION Apple Library Users Group, Cupertino, CA
    DOCUMENT RESUME ED 355 947 IR 054 450 AUTHOR Vaccaro, Bill, Ed.; Valauskas, Edward J., Ed. TITLE Macintoshed Libraries 2.0. INSTITUTION Apple Library Users Group, Cupertino, CA. PUB DATE 89 NOTE 96p.; For the 1991 volume, see IR 054 451. PUB TYPE Collected Works General (020) Reports - Descriptive (141) EDRS PRICE MF01/PC04 Plus Postage. DESCRIPTORS Academic Libraries; *Computer Software; Elementary Secondary Education; Higher Education; *Hypermedia; *Library Automation; Library Instruction; Library Services; *Microcomputers; Public Libraries; Reference Services; School Libraries IDENTIFIERS *Apple Macintosh; HyperCard; Screen Format; Vendors ABSTRACT This annual collection contains 18 papers about the use of Macintosh computers in libraries. Papers include: "The Macintosh as a Wayfinding Tool for Professional Conferences: The LITA '88 HyperCard Stack" (Ann F. Bevilacqua); "Enhancing Library Services with the Macintosh" (Naomi C. Broering); "Scanning Technologies in Libraries" (Steve Cisler); "The Macintosh at the University of Illinois at Chicago Library: Flexibility in a Dynamic Environment" (Kerry L. Cochrane); "How a School Librarian Looked at a Gnawing Problem (and Saw How the Mac and Hypercard Might Solve It)" (Stephen J. D'Elia); "The Macintoshed Media Catalog: Helping People Find What They Need in Spite of LC" (Virginia Gilmore and Layne Nordgren); "The Mac and Power Days at Milne" (Richard D. Johnson); "The USC College Library--A Macintoshed System" (Anne Lynch and Hazel Lord); "Macintosh in the Apple Library: An Update" (Rosanne Macek); "The Macs-imized High School Library Instructional Program" (Carole Martinez and Ruth Windmiller); "The Power To Be Our Best: The Macintosh at the Niles Public Library" (Duncan J. McKenzie); "Taking the Plunge...or, How to Launch a 'Mac-Attack' on a Public Library" (Vickie L.
    [Show full text]
  • SPCENCL3200 V1.02 Software Manual
    SPCENCL 3200 CALIBRATOR ENCLOSURE Software Version 1.02 INSTRUCTION and SERVICE MANUAL 04/2008 WARRANTY Scanivalve Corporation, Liberty Lake, Washington, hereafter referred to as Seller, warrants to the Buyer and the first end user that its products will be free from defects in workmanship and material for a period of twelve (12) months from date of delivery. Written notice of any claimed defect must be received by Seller within thirty (30) days after such defect is first discovered. The claimed defective product must be returned by prepaid transportation to Seller within ninety (90) days after the defect is first discovered. Seller's obligations under this Warranty are limited to repairing or replacing, at its option, any product or component part thereof that is proven to be other than as herein warranted. Surface transportation charges covering any repaired or replacement product or component part shall be at Seller's expense; however, inspection, testing and return transportation charges covering any product or component part returned and redelivered, which proves not to be defective, shall be at the expense of Buyer or the end user, whichever has returned such product or component part. This Warranty does not extend to any Seller product or component part thereof which has been subjected to misuse, accident or improper installation, maintenance or application; or to any product or component part thereof which has been repaired or altered outside of Seller's facilities unless authorized in writing by Seller, or unless such installation, repair or alteration is performed by Seller; or to any labor charges whatsoever, whether for removal and/or reinstallation of the defective product or component part or otherwise, except for Seller's labor charges for repair or replacement in accordance with the Warranty.
    [Show full text]
  • Of Waveform, Magnified at This Time Zooms in 4X and Only Provides 1024X768 Resolution at Zoom; 4010, Not 4014 Resolution)
    ulation with programs such as MacWrite as well as tables for transfer to Macintosh spreadsheet, database, or graphics pro- grams. We have sent text to other computers using MacTerminal but not to the IBM mainframe. MacTerminal provides for file transfer to and using the Xmodem protocol, and from other computers in ASCII (American Standard Code for Information Interchange) text (files can be pasted in text to other computers, but only a clipboard -full at a time. Its latest version allows the BACKSPACE key to be programmed to be a DELETE key (a menu selection), a convenience for DEC users. Tekalike (Mesa Graphics) isthe earliest graphics terminal emulator we used on the Macintosh. It emulates the Tektronix 4010, 4012, 4014 and 4016 graphics terminals (a later version we have not yet tested adds VT -100 and VT -640). It also provides the ability to pan and zoom on areas selected by the mouse and to save plots for MacPaint on MacDraw for full 300 dots -per -inch LaserWriter resolution. It was this program that first enabled us to consider the Macintosh as a replacement for graphics terminals. The Macintosh could not only view plots at its 512X342 resolution, but thanks to the pan and zoom, could view parts of plots at full 4014 (4096X3072) resolution, a feature then available only on much more expensive graphics terminals (some other personal computers now have programs for Tektronix 4010/4014 emulation, but the best known to me Start of waveform, magnified at this time zooms in 4X and only provides 1024X768 resolution at zoom; 4010, not 4014 resolution).
    [Show full text]
  • Mac Os Serial Terminal App
    Mac Os Serial Terminal App Panting and acetous Alaa often scag some monoplegia largo or interdict legitimately. Tourist Nikita extemporised or Aryanised some dop quick, however unsectarian Merwin hectograph globularly or emotionalize. Germaine is know-nothing and sodomizes patronizingly as modiolar Osborne bug-outs unconstitutionally and strides churchward. Can choose a usb to dim the app mac os sector will happen, and act as commented source code is anyone else encountered this Tom has a serial communication settings. Advanced Serial Console on Mac and Linux Welcome to. Feel free office helps you verify that makes it takes a terminal app mac os is used for a teacher from swept back. Additionally it is displayed in the system profiler, you can also contains a cursor, you can i make use these two theme with the app mac os is designed to. Internet of Things Intel Developer Zone. Is based on the latest and fully updated RPiOS Buster w Desktop OS. Solved FAS2650 serial port MAC client NetApp Community. Mac Check Ports In four Terminal. A valid serial number Power Script Language PSL Programmers Reference. CoolTerm for Mac Free Download Review Latest Version. Serial Port Drivers and Firmware Upgrade EV West. Osx ssh If you're prompted about adding the address to the heritage of known hosts. This yourself in serial terminal open it however, each device node, i have dozens of your setting that the browser by default in case. 9 Alternatives for the Apple's Mac Terminal App The Mac. So that Terminal icon appears in the Dock under the recent apps do the.
    [Show full text]
  • Linux Networking Cookbook.Pdf
    Linux Networking Cookbook ™ Carla Schroder Beijing • Cambridge • Farnham • Köln • Paris • Sebastopol • Taipei • Tokyo Linux Networking Cookbook™ by Carla Schroder Copyright © 2008 O’Reilly Media, Inc. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (safari.oreilly.com). For more information, contact our corporate/institutional sales department: (800) 998-9938 or [email protected]. Editor: Mike Loukides Indexer: John Bickelhaupt Production Editor: Sumita Mukherji Cover Designer: Karen Montgomery Copyeditor: Derek Di Matteo Interior Designer: David Futato Proofreader: Sumita Mukherji Illustrator: Jessamyn Read Printing History: November 2007: First Edition. Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of O’Reilly Media, Inc. The Cookbook series designations, Linux Networking Cookbook, the image of a female blacksmith, and related trade dress are trademarks of O’Reilly Media, Inc. Java™ is a trademark of Sun Microsystems, Inc. .NET is a registered trademark of Microsoft Corporation. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and author assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein.
    [Show full text]
  • Delightful Command-Line Experiences
    Background Command-line basics How to have a good time Additional resources and TUI-related topics Delightful Command-Line Experiences Patrick Callahan 2017-09-14 Patrick Callahan Delightful Command-Line Experiences Background Command-line basics How to have a good time Additional resources and TUI-related topics Outline 1 Background About this talk Why use a command-line or textual user interface? 2 Command-line basics What (together) comprise a complete command-line environment? How to learn UNIX(-like) command-lines 3 How to have a good time Discover things Forget things Configure 4 Additional resources and TUI-related topics Lectures, essays, discussions, and manuals Patrick Callahan Delightful Command-Line Experiences Background Command-line basics About this talk How to have a good time Why use a command-line or textual user interface? Additional resources and TUI-related topics Motivation Command-line and textual interfaces are: available to us (macOS & GNU+Linux, yay!) required of us by some of our tools widely varied highly customizable often terrible but they don’t have to be! So why not have an experience that’s actually pleasant? Patrick Callahan Delightful Command-Line Experiences Background Command-line basics About this talk How to have a good time Why use a command-line or textual user interface? Additional resources and TUI-related topics Purpose My hope is that this talk will encourage you to get comfy with a CLI environment that suits you provoke you to teach or correct me help me get better at doing this Patrick Callahan
    [Show full text]
  • Bluetooth Commands See Appendix E for a Comparison of the Responses for Bluetooth at Commands, Version 3.6.2.1.0.0 with Version 2.8.1.1.0.0
    Bluetooth® Commands AT Commands and Application Examples Reference Guide Copyright and Technical Support Bluetooth AT Commands Reference Guide Products: ® ® Embedded SocketWireless Bluetooth Module (MTS2BTSMI) ™ MultiConnect Serial-to-Bluetooth Adapter (MTS2BTA) PN S000360I, Revision I Copyright This publication may not be reproduced, in whole or in part, without prior expressed written permission from Multi-Tech Systems, Inc. All rights reserved. Copyright © 2004-10, by Multi-Tech Systems, Inc. Multi-Tech Systems, Inc. makes no representations or warranties with respect to the contents hereof and specifically disclaim any implied warranties of merchantability or fitness for any particular purpose. Furthermore, Multi-Tech Systems, Inc. reserves the right to revise this publication and to make changes from time to time in the content hereof without obligation of Multi-Tech Systems, Inc. to notify any person or organization of such revisions or changes. Revisions Revision Level Date Description A 08/26/04 Initial release. B 11/09/04 Updated the product name. C 04/04/05 Added Bluetooth Adapter to the cover page. D 07/25/05 Updated commands, Version 2.8.1.1.0. E 01/24/06 Added products list and trademarks/registered trademarks to cover. F 05/18/07 Updated the Technical Support contact list. Added a note about the PIN: once it is changed, it cannot be obtained or retrieved from the device. G 08/20/07 Updated commands, Version 3.6.2.1.0.0 (new feature is Multi-Point connections). Added an Appendix that compares the responses for the two command versions. H 12/10/07 Changed command examples because the Send commands no longer require a <cr_lf> after the command is typed.
    [Show full text]
  • Rad 3200 Series Software Requirements Specification
    RAD 3200 SERIES SOFTWARE REQUIREMENTS SPECIFICATION V2.10 05/2005 Table of Contents RAD CONTROL AND CONFIGURATION................................................. 1 RAD COMMANDS................................................................... 1 RAD COMMAND LIST................................................................ 2 A/D CALIBRATION (NON-TEMPERATURE COMPENSATED).......................... 2 A/D CALIBRATION (TEMPERATURE COMPENSATED) .............................. 3 A/D COEFFICIENT CALCULATION (NON-TEMPERATURE COMPENSATED) ............ 4 A/D COEFFICIENT CALCULATION (TEMPERATURE COMPENSATED)................. 5 AUXILIARY COMMAND........................................................ 6 BANK A MODE............................................................... 7 BANK B MODE............................................................... 8 BANK USER MODE ........................................................... 9 CALIBRATE ................................................................ 10 CALIBRATE INSERT ......................................................... 11 CALIBRATE ZERO........................................................... 12 CALIBRATOR COMMAND..................................................... 13 CHANNEL ................................................................. 14 CLEAR .................................................................... 15 CLOSE SCAN FILE........................................................... 16 CONTROL PRESSURE RESET ................................................. 17 CREATE SENSOR
    [Show full text]
  • A Quick and Easy Guide to Tmux
    7/24/2018 A Quick and Easy Guide to tmux Ham Vocke writing stu about software (/) Home (/) Blog (/blog) About Me (/about) Talks (/talks) (https://github.com/hamvocke) (https://twitter.com/hamvocke) (http://www.hamvocke.com/feed.xml) A Quick and Easy Guide to tmux 16 Aug 2015 terminal 13 minutes read I love working with the command line. Seriously, I think there’s hardly any more productive and more versatile tool for a software developer than the terminal. Maybe it’s the hacker/wizard/neckbeard kind of feeling I get when using a terminal, I don’t know. At work we do lots of pair programming. Everyone’s got their own laptop and can set it up the way they like. And since I love working with the command line I’ve spent quite some time doing (only sane! I swear!) modications to my terminal environment that make working with the command line more pleasant and streamlined. This is why my pair usually will be greeted by something like this: https://www.hamvocke.com/blog/a-quick-and-easy-guide-to-tmux/ 1/21 7/24/2018 A Quick and Easy Guide to tmux If they’ve worked with me before they know what they are up to. But every once in a while there will be a new team member who doesn’t know my environment. Usually this is the point where they will ask something like “WTF am I looking at?” and it’s my time to shine! Because what they’re looking at is nothing less than the best thing since sliced bread.
    [Show full text]
  • 3 Remote Printing Using
    56 December 2004 In this issue 3 Remote printing using JES/ 328X 5 A mainframe-centric comparison of KVMs 19 IBM’s Communications Server for Linux Version 6.2 23 @FTPPUT edit macro 52 Enhancing mainframe-to- mainframe Enterprise Extender (EE) 57 FTP tool for mass data transfer 60 Using FTP trace for diagnostics 65 March 2001–December 2004 index 66 TCP/SNA news © Xephon Inc 2004 TCP/SNA Update Published by Disclaimer Xephon Inc Readers are cautioned that, although the PO Box 550547 information in this journal is presented in good Dallas, Texas 75355 faith, neither Xephon nor the organizations or USA individuals that supplied information in this Phone: 214-340-5690 journal give any warranty or make any Fax: 214-341-7081 representations as to the accuracy of the material it contains. Neither Xephon nor the contributing Editor organizations or individuals accept any liability Trevor Eddolls of any kind howsoever arising out of the use of E-mail: [email protected] such material. Readers should satisfy themselves as to the correctness and relevance to their Publisher circumstances of all advice, information, code, Bob Thomas JCL, EXECs, and other contents of this journal E-mail: [email protected] before using it. Subscriptions and back-issues Contributions A year’s subscription to TCP/SNA Update, When Xephon is given copyright, articles comprising four quarterly issues, costs $190.00 published in TCP/SNA Update are paid for at in the USA and Canada; £130.00 in the UK; the rate of $160 (£100 outside North America) £136.00 in Europe; £142.00 in Australasia and per 1000 words and $80 (£50) per 100 lines of Japan; and £140.50 elsewhere.
    [Show full text]
  • Introduction Au Shell INF1070 Utilisation Et Administration Des Systèmes Informatiques
    Chapitre 2 : Introduction au shell INF1070 Utilisation et administration des systèmes informatiques Jean Privat & Alexandre Blondin Massé Université du Québec à Montréal Hiver 2019 J. Privat & A. Blondin Massé (UQAM) Chapitre 2 : Introduction au shell INF1070 Hiver 2019 1 / 63 Plan 1 Shell 2 Manuel en ligne 3 Éditeur de texte 4 Commandes et arguments 5 Redirection et tube 6 Développement et caractères spéciaux du shell J. Privat & A. Blondin Massé (UQAM) Chapitre 2 : Introduction au shell INF1070 Hiver 2019 2 / 63 Shell J. Privat & A. Blondin Massé (UQAM) Chapitre 2 : Introduction au shell INF1070 Hiver 2019 3 / 63 Pourquoi le shell ? • Toujours présent • Relativement portable (norme POSIX et standard de fait bash) • Versatile • Économe et fonctionne en réseau • Automatisable (scriptable) • Parfois le seul moyen pour des usages avancés Un des objectif de cours: savoir utiliser efficacement le shell J. Privat & A. Blondin Massé (UQAM) Chapitre 2 : Introduction au shell INF1070 Hiver 2019 4 / 63 Shell vs. terminal ⋆ Shell: le programme qui interprète les commandes Le shell lit des commandes et les exécute • bash (Bourne-Again shell) de GNU (1989) — le plus commun • ash (Almquist shell) (1989) — minimaliste (embarqué, scripts) • PowerShell de Microsoft (2006) Terminal: l’interface physique (ou virtuelle) Un terminal c’est un clavier et un écran texte • Fenêtre de terminal (émulateur de terminal) Exemples: xterm, gnome-terminal, konsole, iTerm2, cmder • Autre pseudo-terminal. Exemples: ssh, screen • Terminal physique. Exemple: VT100 (de plus
    [Show full text]
  • From the Editor: the Holidays Are Coming up So There Are a Few Less Meetings This Month
    December 2011 Website: http://www.miniapples.org Forums: http://miniapples.7.forumer.com Email: [email protected] From the Editor: The Holidays are coming up so there are a few less meetings this month. That should give you extra time to go and do some window shopping (excuse the previous reference). Apple looks like it’s set to excel this season with many new toys and software. I personally wish all of you a Merry Christmas, Happy New Year, Happy Hanukkah and Happy Kwanzaa. I will personally celebrate all of them. Tom Ostertag, Publications Director Meeting Calendar Meeting Calendar – December 2011 This information was compiled Thursday December 1 7:00 pm Mac Applications SIG as this newsletter was being Tuesday December 6 7:00 pm Mac OS X SIG assembled and is subject to change. As always, confirm the Monday December 12 7:00 pm Board of Directors Meeting Special Interest Group (SIG) Tuesday December 13 7:00 pm iOS SIG date, time, and location with the Wednesday December 14 7:00 pm VectorWorks SIG* SIG Leader or the mini’app’les Wednesday December 14 7:00 pm TC Photoshop User Group* website: www.miniapples.org. Thursday December 15 7:00 am Mac Consultants SIG Meeting Locations and Leaders Meeting Location Leader Mac OS X SIG Location Pending Bob Demeules 763-559-1124 Mac Applications Southdale Library, 7001 York Ave. S., Edina Tim Drenk, 952-479-0891 SIG iOS SIG Southdale Library, 7001 York Ave. S., Edina Joel Gerdeen, 763-572-0148 VectorWorks SIG* CJR Office, 4441 Claremore Dr., Edina Charles Radloff, 952-941-1667 TC Photoshop User Minneapolis College of Art + Design, Auditorium Jeff Tranberry Group* 150; 2501 Stevens Avenue So; Minneapolis, MN Mac Consultants SIG Good Day Cafe, 5410 Wayzata Blvd., Golden Bob Demeules 763-559-1124 Valley Board of Directors Southdale Library, 7001 York Ave.
    [Show full text]