Search Results

Search: Posts Made By: KathyB148
1,498
Posted By Aia
printf -v number "%s" ${second#\#} Now, what...
printf -v number "%s" ${second#\#}
Now, what you want lives in a variable named `number'
1,498
Posted By Khanaza
Its just a variable ,added to take any other...
Its just a variable ,added to take any other input that may present in the file ,
like
#1043 asd #Here asd will go to junk
If you are sure you have only one word per line ,you can skip this.
6,702
Posted By vbe
Since you archived using absolute path, it will...
Since you archived using absolute path, it will recreate that very same structure from root (or use what it finds if tree exist...)
You didnt say what you are migrating from... ( Is it an old...
6,702
Posted By rbatte1
Okay, so a few questions:- How did you...
Okay, so a few questions:-


How did you create your tar file?
Did you specify a full path for the files or relative to where you were?
Which account are you running as at the time (output...
5,232
Posted By Corona688
Based on the information you've given me, I'd...
Based on the information you've given me, I'd grep for ~GR~ in that text file, which would give you the lines

~GR~FIELD1GRID~1|2|3|5|6|7

...which probably isn't what you wanted.

If you want...
5,232
Posted By Corona688
You're going to have to be a lot more specific. ...
You're going to have to be a lot more specific. We don't know this program; we can't tell when a choice has been made.
1,788
Posted By otheus
Alas, sort doesn't know how to skip lines. You...
Alas, sort doesn't know how to skip lines. You must extract the first line separately, then sort the rest, then add it back later:

{ head -1 file.txt ; tail +2 file.txt | sort -u ; } >file1.txt
...
Showing results 1 to 7 of 7

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