Search Results

Search: Posts Made By: quirkasaurus
2,862
Posted By quirkasaurus
works for me: cat << EOF | ...
works for me:

cat << EOF |
:20:9400115251184711 :61:1509090908DR991,43NCOL09:04:0032 :86:/OCMT/EUR991,43/PT/FT/BN/ORANGE ESPAGNE S.A.U
EOF
tr ' ' '\012' |
awk '/^:/{printf("\n%s", $1);next;}...
889
Posted By quirkasaurus
first line: file1.h: file2.h file3.h ...
first line:
file1.h: file2.h file3.h

means.... that file1.h needs action if older than file2.h or file3.h.
however, no action specified.

file1.exe : file4.c file5.c
gcc -o file1.exe...
31,963
Posted By quirkasaurus
typeset -l section is creating a variable that...
typeset -l section
is creating a variable that will be forced lower case.
Check by typing:

typeset -l section
section=LSKDHFLKSDHF
echo $section

section=${2:-.}

Means, assign section...
3,882
Posted By quirkasaurus
where you have "sun" in the crontab file, it...
where you have "sun" in the crontab file, it should be 0.
the days of the week are numerical values.
4,256
Posted By quirkasaurus
vi '+/192\.189\.1\.2' log_file << EOF ...
vi '+/192\.189\.1\.2' log_file << EOF
o$fwInsert^[:wq
EOF



where the ^[ is the ESC character, entered by typing CONTROL-V ESCAPE in vi insert mode.

Also. It may be tricky to add the...
2,258
Posted By quirkasaurus
find /scratch/mzd/gamess-scratch -type f -name...
find /scratch/mzd/gamess-scratch -type f -name ${NAME:-safety_net}\* -exec /bin/rm {} \;



... that'll do it....
249,577
Posted By quirkasaurus
The sem-colon is a command terminus in the UNIX...
The sem-colon is a command terminus in the UNIX shell.
However, it is required to be passed into the find command
as a terminus for the -exec option.

If it is not escaped by the backslash, the...
249,577
Posted By quirkasaurus
Pludi, the idea is to help.... not refer someone...
Pludi, the idea is to help.... not refer someone to the man page.


find . -exec touch {} \;
27,753
Posted By quirkasaurus
that's what i'm telling you, Ikea.... the...
that's what i'm telling you, Ikea....

the .profile is NOT SOURCED IN DURING CRON.

you must explicitly do so within a shell, within your cron command.

try putting everything into another...
Showing results 1 to 9 of 9

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