Darkty
(usa Outra)
Enviado em 16/03/2017 - 18:18h
Galera comecei a estudar Linux mas infelizmente já encontrei a primeira barreira, estou estudando por conta própria portanto confesso que esse começo está sendo bem complicado para pegar o jeito.
Fiquei preso em alguns exercícios e seria muito bom se alguém pudesse me dar uma luz e me ajudar nesses exercícios, tentei resolver por conta propria por um tempo mas infelizmente tentei de tudo e não consegui.
Estou utilizando uma Distro do Fedora 25, é um livro em inglês infelizmente temos poucos conteudo em português realmente bom,portanto desculpem por isso.
5. Where does your shell get the echo command from? Try to figure it out using both the which command and the type command.
6. Create an alias that shows your student number and first name when you run a command called showme.
7. Run the commands in the script found at
https://github.com/zonzorp/comp2108/blob/master/makefiles.sh. Use file name globbing to display a list of all the files created that exactly match the following patterns:
o [any of the first 3 letters in your first name]/[first or last digit of your studentnumber][first or last letter of your last name]
o the first letter of your first name/anything that ends with the last letter of your last name
8. Use the echo command to display the following output:
o "Shouldn't $1.25 times 6 split 3 ways give $2.50 for each person?", he demanded!
9. Put the calendar for this month into a variable named january and display that variable. Use only one command line to achieve this.
Aswer: january="'cal 1 2017'"; echo $january
10. Run a command that displays It's there! if there is a file named [your first name initial]/[your last name initial][the last digit of your student number] and then another command that displays Sad! if there is no file named [your first name initial]/[your last name initial][the last digit of your student number][your first name initial].
Já deixo agradecido a quem puder me ajudar