Differenze tra le versioni di "Shell Unix:Gestione di file e cartelle"

(Creata pagina con "← Torna ad Shell Unix Category:Shell Unix == Ciclo sulle cartelle presenti == <pre> for DIR in $(ls -d */) do echo $DIR done </pre>")
 
Riga 1: Riga 1:
 
[[GENERALE#Shell Unix|&larr; Torna ad Shell Unix]] [[Category:Shell Unix]]
 
[[GENERALE#Shell Unix|&larr; Torna ad Shell Unix]] [[Category:Shell Unix]]
  
== Ciclo sulle cartelle presenti ==
+
'''Ciclo sulle cartelle presenti'''
<pre>  
+
<pre>
 
for DIR in $(ls -d */)  
 
for DIR in $(ls -d */)  
 
do  
 
do  

Versione delle 19:55, 29 apr 2020

← Torna ad Shell Unix

Ciclo sulle cartelle presenti

for DIR in $(ls -d */) 
do 
   echo $DIR 
done