Search Results

Search: Posts Made By: Danette
12,760
Posted By vbe
the only ways are either add lines in your job...
the only ways are either add lines in your job script to echo anything in a log file or to output the execution of the script to a log file you open in another terminal using tail -f which will show...
12,193
Posted By vgersh99
ok, how about using find. To start with: ...
ok, how about using find. To start with:

find . \( -name '*.org' -o -name '*.texi' \) | xargs head
3,487
Posted By Scrutinizer
Hi, it does not work that way. Instead try: ...
Hi, it does not work that way. Instead try:
oflnb=${oflna%.*}
13,801
Posted By Scrutinizer
Try this adaptation of RudiC's suggestion: ...
Try this adaptation of RudiC's suggestion:

awk '
/@inlineifset/ {
if(/@btpar/) {
$1 = $1
gsub(/@inlineifset{mrg, @btpar{@|,,,,}}/, "")
}
print
}
' RS=...
13,251
Posted By nezabudka
Hi no pipe needed sed '/inlineifset/,/^...
Hi
no pipe needed
sed '/inlineifset/,/^ *$/!d; s/@inlineifset{mrg, @opar{@bullet{} @//' $flnm
13,251
Posted By RudiC
Try - remember you wanted a space! - $ awk...
Try - remember you wanted a space! -

$ awk '/inlineifset/ {sub (/@inlineifset{mrg, @opar{@bullet{}/, " "); print}' RS= ORS="\n\n" file
@subsubsection ObsPy LibmSeed License Problem,,,,}}
...
4,675
Posted By RudiC
Like so? awk '$1=$1' RS= FS="\n" OFS=\| file |...
Like so?
awk '$1=$1' RS= FS="\n" OFS=\| file | sort -t"|" -k3,3 | awk '$1=$1' FS="|" OFS="\n" ORS="\n\n"
Showing results 1 to 7 of 7

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