Search Results

Search: Posts Made By: Siva Sankar
1,567
Posted By linuxcmdsnewbie
tar -cvf <tarname.tar> <filelist>
tar -cvf <tarname.tar> <filelist>
29,571
Posted By agama
You can try uncompressing it to stdout and piping...
You can try uncompressing it to stdout and piping it to wc to get a byte count.


gzip -dc file.gz|wc
1,040
Posted By agama
Many different ways, here's one: awk ' {...
Many different ways, here's one:


awk ' { for( i = 0; i < 3; i++ ) print; }' input-file-name
1,553
Posted By methyl
Please mention your Operating System and version...
Please mention your Operating System and version and your preferred Shell.

If you want the full path name to each file in each of the subdirectories called "MP", here is one method:

#!/bin/ksh...
1,553
Posted By m.d.ludwig
Simply: ls Projects/S*/MP(assuming there is...
Simply:
ls Projects/S*/MP(assuming there is only S1, S2, ... S20 in Projects)

If there are others, then:
ls Projects/S{{,1}{1,2,3,4,5,6,7,8,9},{1,2}0}/MP(assuming bash or csh)
or even:
ls...
Showing results 1 to 5 of 5

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