Search Results

Search: Posts Made By: munkeHoller
855
Posted By munkeHoller
sort needs somewhere to create work file(s) used...
sort needs somewhere to create work file(s) used during its processing, these are usually in /tmp or $TMPDIR, but the option is given to the user to select a 'scratch' area .... so, its optional
18,251
Posted By munkeHoller
here's one way ..... for file in *.x; do ...
here's one way .....

for file in *.x; do
wc -c $file | awk '{printf("%ld,%s\n",$1,$2)}' > ${file}.temp && cat ${file} >> ${file}.temp && mv ${file}.temp ${file};
done
4,605
Posted By munkeHoller
#fsck (or one of its variants should do the job) ...
#fsck (or one of its variants should do the job)
man -k fsck
Showing results 1 to 3 of 3

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