Design a complicated machine to do a simple task
—suggested by thunderface.
(2 comments)
Viewing one of a_noob’s submissions for Mar 04, 2011. View all of a_noob’s submissions for Mar 04, 2011
-
This submission has been flagged by users. Click to view.
for Ubergeeks, I present my application designed to copy files:
length='du filetocopy | awk { print $1 }'
dd if=/dev/zero of=newfile count=$length
while [ $1 -le $length ] do dd if=filetocopy of=newfile bs=1 seek=$1 count=1 skip=$1; 1=$(( $1 + 1 )); doneMar 04, 2011 16:27 by a_noobfavorite1 comment
This comment has been flagged by users. Click to view.
Dunno if you saw it, but my post was in response to yours :)