Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for f in $(ls)
do
mv $f ${f}.tmp
echo 'John Doe'|cat - ${f}.tmp>$f
done
#!/bin/sh
# not assuming [k|ba]sh is used
for file in `ls`
do [ -w $file ] || continue
(
echo blabla blabla
cat $file
) >temp.file
mv temp.file $file
done
BEGIN{a[0]="john doe"}
f!=FILENAME&&c{p();c=0}
{a[++c]=$0;f=FILENAME}
function p(){for(x=0;x<=c;x++) print a[x] > f;close f}
END{p()}