Search Results

Search: Posts Made By: danimath
1,063
Posted By danimath
:3 /g/ :noh or other possibility: :3 ...
:3
/g/
:noh
or other possibility:

:3
fg
(why don't you use cursor keys? :))
regards
Andreas
2,316
Posted By danimath
If the line is longer than your page size then...
If the line is longer than your page size then you will have difficulties to put one line into one terminal line ;)

Try something like


awk -F, '{printf ("%s\t%s\t%s\n", $1, $2, $3)}'...
14,143
Posted By danimath
Hi, perhaps this is not exactly what you...
Hi,

perhaps this is not exactly what you want, but try to put all but the last into background:
$ tail -f file1 &
$ tail -f file2 &
...
$ tail -f filen


To stop the tails you can...
100,598
Posted By danimath
yep - how simple. I thought much too complicated:...
yep - how simple. I thought much too complicated:

find /folderA/folderB -name '*.txt' | awk -F/ '{if (NF == 4) print $4}'



:)

best regards
Andreas
100,598
Posted By danimath
Hi, find /folderA/folderB/ -name...
Hi,


find /folderA/folderB/ -name -maxdepth 1 *.txt
does this. BTW: this will not work correct, if you have any files with .txt in the directory where you call the find command. The better...
2,360
Posted By danimath
This is one way to start the script; change...
This is one way to start the script; change directory to the directory where the script "lives", and start with ./ in front of your script:

cd your_directory_here
./your_script_here

e.g.: cd...
Showing results 1 to 6 of 6

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