Add ISO/examenes/tema10

This commit is contained in:
Nicolás A. Ortega Froysa 2022-04-06 20:21:18 +02:00
parent 1009eadc22
commit 766fd9b749
8 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Se han introducido $# argumentos."

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Argumento 1: $1"

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Argumento 2: $2"

View File

@ -0,0 +1,3 @@
#!/bin/bash
PROD=$(expr $1 \* $2)
echo "Producto $1*$2=$PROD"

View File

@ -0,0 +1,9 @@
#!/bin/bash
if [ $# -lt 3 ]
then
echo "Se precisan al menos 3 argumentos."
exit 1
fi
for i in $@; do echo "$i"; done

View File

@ -0,0 +1,7 @@
#!/bin/bash
if [[ -n $1 ]]
then
echo $1
else
echo "No hay argumentos."
fi

View File

@ -0,0 +1,4 @@
#!/bin/bash
mkdir -p ~/dir1 ~/dir3/dir21
mkdir -p ~/dir4/dir31
mkdir ~/dir2

View File

@ -0,0 +1,18 @@
#!/bin/bash
# a)
ls /dev/tty??
# b)
ls /etc/[^t]*
# c)
ps | sort
# d)
wc -l /etc/passwd
# e)
ln -s /usr/dir1 /home/usuario/enlacedir1
# f)
cp -r /bin/u* /home/usuario/enlacedir1/
# g)
chmod a-w /home/usuario
# h)
cat /etc/motd