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.
tab in csh
Name: narsman Date: February 17, 2005 at 17:47:36 Pacific OS: Windows NT CPU/Ram: 512 Mb
Summary: Not forgetting to mention it should be in csh, found another script that is written in ksh. Doesnt seem to work for me though. any difference? ...
Summary: Hello, I have a comma-delimited file open in vi. How do I replace , with tab? This :g/,/s//' '/g seems to work, but I'm not 100% sure. Thanks! ...
Summary: In Korn shell you can do: while (( ++n <= 10 )) do print $n done Or in ksh93, for (( n >= 0; n <= 10; n++ )) do print $n done Does it have to be c...