Or the one liner#!/bin/bash
for i in $( ls ); do
echo item: $i
done
There, maybe next time I will not have to look as hard. :-Pfor i in $( ls ); do echo item: $i; done
Knowledge is best when shared. To this end I'm trying to start blogging tidbits of knowledge I come across so that others can benefit from it.
Or the one liner#!/bin/bash
for i in $( ls ); do
echo item: $i
done
There, maybe next time I will not have to look as hard. :-Pfor i in $( ls ); do echo item: $i; done
No comments:
Post a Comment