Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Computing and Decision Making: Lecture 7 - HTML, Unix, and Decision Making Techniques, Slides of Artificial Intelligence

Various topics from lecture 7 of csci 100, including an example html file, unix commands like grep, find, wget, and unix process control. Additionally, it introduces decision making techniques such as utility theory, expected utility, decision trees, and games.

Typology: Slides

2012/2013

Uploaded on 04/24/2013

banani
banani 🇮🇳

4.3

(3)

93 documents

1 / 2

Toggle sidebar

Related documents


Partial preview of the text

Download Computing and Decision Making: Lecture 7 - HTML, Unix, and Decision Making Techniques and more Slides Artificial Intelligence in PDF only on Docsity! 1 CSCI 100 Think Like Computers Lecture 7 Fall 2008 Example HTML File • <html> • <title> My Home Page </title> • <body> • <center><h2>Welcome!</h2></center> • The text goes here … • </body> • </html> Some More Unix • grep (print lines matching a pattern) • grep clark.edu ~/public_html/*.html • ls –l | grep jpg Find files • find (search for files in a directory hierarchy) • find . –name “DSC*.jpg” –print • find . –iname “DSC*.jpg” –print • find ~/ -size +1000k • find ~/ -ctime -2 Other • wget (network downloader) wget http://myhome.com/file/achive.zip • date (get time) • cal (calendar) • ssh, sftp, ftp (remote access/file transfer) Unix Process Control • ^C : interrupt • ^Z : suspend • jobs (show jobs list) • fg (bring to foreground – resume) • bg (bring to background – resume) • command & : run command at background (most GUI programs) • ps : process status • kill process_id : terminate a process Docsity.com
Docsity logo



Copyright © 2024 Ladybird Srl - Via Leonardo da Vinci 16, 10126, Torino, Italy - VAT 10816460017 - All rights reserved