traduccion de files-delete

This commit is contained in:
aleoncavallo 2024-06-03 23:28:41 -03:00 committed by GitHub
parent 3141bf51b4
commit 634c59d90d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,36 +1,36 @@
title = Unexpected Roommates
title = Compañeros no esperados
cards = file-delete
[description]
The first day at Time Travel School comes to an end and you receive the key to your room.
Full of excitement you open the door just to find... spider webs! Spider webs everywhere!
El primer día en la Escuela de Viajes en el Tiempo llega a su fin y recibes la llave de tu habitación.
Lleno de emoción abres la puerta solo para encontrar... ¡telarañas! ¡Telarañas por todas partes!
Remove all the spider webs you can find with the remove card!
¡Elimina todas las telarañas que puedas encontrar con la carta de eliminación!
[cli]
On the command line, you can easily delete all files ending in -web using this command:
En la línea de comandos, puedes eliminar fácilmente todos los archivos que terminan en -web usando este comando:
rm *web
rm *telaraña
[setup]
echo A tiny spider web is next to your window. > tiny_web
echo A big spider web sticks above your bed. > big_web
echo A cozy bed. > bed
echo An extra thick spider web is right beside your door. > thick_web
echo Una pequeña telaraña está junto a tu ventana. > pequeña_telaraña
echo Una gran telaraña está sobre tu cama. > gran_telaraña
echo Una cama acogedora. > cama
echo Una telaraña super gruesa está justo al lado de tu puerta. > gruesa_telaraña
[win]
# Remove all spider webs.
! ls | grep thick_web &&
! ls | grep big_web &&
! ls | grep tiny_web
# Elimina todas las telarañas.
! ls | grep gruesa_telaraña &&
! ls | grep gran_telaraña &&
! ls | grep pequeña_telaraña
# But make sure you keep your bed!
ls | grep bed
# ¡Pero asegúrate de mantener tu cama!
ls | grep cama
[congrats]
Your room looks now very tidy and cozy! Time to unpack your stuff!
¡Tu habitación ahora se ve muy ordenada y acogedora! ¡Es hora de desempacar tus cosas!