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 cards = file-delete
[description] [description]
The first day at Time Travel School comes to an end and you receive the key to your room. El primer día en la Escuela de Viajes en el Tiempo llega a su fin y recibes la llave de tu habitación.
Full of excitement you open the door just to find... spider webs! Spider webs everywhere! 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] [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] [setup]
echo A tiny spider web is next to your window. > tiny_web echo Una pequeña telaraña está junto a tu ventana. > pequeña_telaraña
echo A big spider web sticks above your bed. > big_web echo Una gran telaraña está sobre tu cama. > gran_telaraña
echo A cozy bed. > bed echo Una cama acogedora. > cama
echo An extra thick spider web is right beside your door. > thick_web echo Una telaraña super gruesa está justo al lado de tu puerta. > gruesa_telaraña
[win] [win]
# Remove all spider webs. # Elimina todas las telarañas.
! ls | grep thick_web && ! ls | grep gruesa_telaraña &&
! ls | grep big_web && ! ls | grep gran_telaraña &&
! ls | grep tiny_web ! ls | grep pequeña_telaraña
# But make sure you keep your bed! # ¡Pero asegúrate de mantener tu cama!
ls | grep bed ls | grep cama
[congrats] [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!