Search Results

Search: Posts Made By: mglenney
73,057
Posted By mglenney
for i in $(cat a.txt); do echo "Root $i"; done ...
for i in $(cat a.txt); do echo "Root $i"; done
actually, probably better with awk
awk '{print "Root " $0}' a.txt
Or with sed
sed 's/^/Root /g' a.txt

BTW, I'm not showing off, I'm trying to...
Showing results 1 to 1 of 1

 
All times are GMT -4. The time now is 12:59 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy