<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" >
   <channel>
    <atom:link href="https://informatica-web.webnode.page/rss/curso.xml" rel="self" type="application/rss+xml" />
      <title><![CDATA[Curso de Shell - informatica-web.webnode.page]]></title>
      <link>https://informatica-web.webnode.page</link>
      <language>pt-br</language>
      <pubDate>Sun, 04 Mar 2012 03:21:00 +0200</pubDate>
      <lastBuildDate>Sun, 04 Mar 2012 03:21:00 +0200</lastBuildDate>
      <category><![CDATA[Curso de Shell]]></category>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs>
      <generator>Webnode</generator>
      <item>
         <title><![CDATA[01-Introdução]]></title>
         <link>https://informatica-web.webnode.page/news/a01-introdu%c3%a7%c3%a3o/</link>
         <description><![CDATA[
	&nbsp;

	&nbsp;

	O que são os shell scripts? Shell scripts são conjuntos de comandos armazenados em um arquivo texto que são executados seqüencialmente. Nesta primeira parte, faremos uma introdução sobre o shell, o formato desses arquivos e variáveis de ambiente.

	&nbsp;

	Uma boa referéncia de livro sobre Shell Script é o livro do&nbsp;Aurélio.

	&nbsp;
]]></description>
         <pubDate>Sun, 04 Mar 2012 03:21:00 +0200</pubDate>
         <guid isPermaLink="true">https://informatica-web.webnode.page/news/a01-introdu%c3%a7%c3%a3o/</guid>
         <category><![CDATA[Curso de Shell]]></category>
      </item>
      <item>
         <title><![CDATA[02-O que é Shell]]></title>
         <link>https://informatica-web.webnode.page/news/o-que-e-shell/</link>
         <description><![CDATA[
	&nbsp;

	
		&nbsp;
	
		Shell, ou interpretador de comandos, é o programa disparado logo após o login responsável por "pegar" os comandos do usuário, interpretá-los e executar uma determinada ação.
	
		&nbsp;
	
		Por exemplo, quando você escreve no console "ls" e pressiona , o shell lê essa string e verifica se existe algum comando interno (embutido no próprio shell) com esse nome. Se houver, ele executa esse comando interno. Caso contrário, ele vai procurar no PATH por algum programa que...]]></description>
         <pubDate>Sun, 04 Mar 2012 03:20:00 +0200</pubDate>
         <guid isPermaLink="true">https://informatica-web.webnode.page/news/o-que-e-shell/</guid>
         <category><![CDATA[Curso de Shell]]></category>
      </item>
      <item>
         <title><![CDATA[03-Variáveis do ambiente]]></title>
         <link>https://informatica-web.webnode.page/news/variaveis-do-ambiente/</link>
         <description><![CDATA[
	&nbsp;

	
		&nbsp;
	
		Uma variável é onde o shell armazena determinados valores para utilização posterior.
	
		&nbsp;
	
		Toda variável possui um nome e um valor associado a ela, podendo ser este último vazio. Para listar as variáveis atualmente definidas no shell digite o comando set .


	&nbsp;

	Para se definir uma variável, basta utilizar a síntaxe:&nbsp;nome_da_variável=valor&nbsp;.&nbsp;Por exemplo, queremos definir uma variável chamada "cor" com o valor de...]]></description>
         <pubDate>Sun, 04 Mar 2012 03:20:00 +0200</pubDate>
         <guid isPermaLink="true">https://informatica-web.webnode.page/news/variaveis-do-ambiente/</guid>
         <category><![CDATA[Curso de Shell]]></category>
      </item>
      <item>
         <title><![CDATA[04-Formato dos arquivos de Shell Script]]></title>
         <link>https://informatica-web.webnode.page/news/formato-dos-arquivos-de-shell-script/</link>
         <description><![CDATA[
	&nbsp;

	&nbsp;

	A primeira linha de todo shell script deve começar com algo do tipo:&nbsp;#!/bin/bash&nbsp;, a qual indica com qual shell deverá ser executado o script.Nesse exemplo, estamos falando para o shell atual executar o script com o shell /bin/bash.Se quisermos que o nosso script seja executado com o&nbsp;shell csh, devemos colocar nessa primeira linha:&nbsp;#!/bin/csh&nbsp;.

	&nbsp;

	Como usaremos o bash como nosso shell de referência, todas as linhas dos nossos scripts...]]></description>
         <pubDate>Sun, 04 Mar 2012 03:19:00 +0200</pubDate>
         <guid isPermaLink="true">https://informatica-web.webnode.page/news/formato-dos-arquivos-de-shell-script/</guid>
         <category><![CDATA[Curso de Shell]]></category>
      </item>
   </channel>
</rss>