Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
streaming files (.asf)
Name: harvi rupal Date: March 13, 2001 at 10:47:39 Pacific
Comment:
is there any application that we run on unix for streamed windows media files (asf) or vicversa
Summary: Hi! I wrote this script for you ... and works fine in bash under Linux :) - #!/bin/bash file="file.txt" rm -rf ./$file.new echo -e "Processing $file ..." number_of_lines=$(wc -l ./$file | sed -e 's,\....
Summary: sed stands for Stream EDitor. It's a common utility used to edit text files from the command line or a script. This particular example prints all lines, but the last. On the last line it uses a reg...
Summary: A program written to handle a stream typically does not care where input and output flow. It could be flowing to/from a network device, from user input, from a file, or from a peripheral. With a recor...