Sponsored Content
Full Discussion: sed in awk ? or nested awk ?
Top Forums UNIX for Advanced & Expert Users sed in awk ? or nested awk ? Post 302162871 by varungupta on Wednesday 30th of January 2008 12:04:05 PM
Old 01-30-2008
Quote:
Originally Posted by shamrock
Put the sed command inside double ticks as the single ones prevent variable expansion...

Code:
sed -n "/$fpm/p"

hey,

I tried using :
fpm=`awk '$2=="966906" {print $3}' tempfind.txt` | sed -n "/$fpm/p" tempfind.txt
but still its not working. Whenever I do only awk '$2=="966906" {print $3}' tempfind.txt it works and gives the value of $3, but when we assign $3 to fpm variable, its not going ahead.

Even i have tried..
fpm=`awk '$2=="966906" {print $3}' tempfind.txt` | echo "$fpm"
It does not show anything.

Where is the matter ?? Please suggust me, this is the last thing in my script and am waiting to complete it.

Thanks !!
VarunSmilie

Last edited by varungupta; 01-30-2008 at 05:07 PM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk 2 delimiter nested

Hello All, This work could be very easy for you guys. I would really appreciate help. input file: output file: (Desired) What I am capable of doing: Command: cat inputfile | awk -F\| '{print "num="$1" value="$2" digits="$3" name1="$4" file="$5" code="$6}' > outputfile Result what I am... (5 Replies)
Discussion started by: onlyroshni
5 Replies

2. Shell Programming and Scripting

Awk Script: Nested search using different patter

Hi Friends. Please have a look at dummy file. I need to extract from this file: 1. Counts of event= 2. the 2nd coulmn is unique call id of this transaction. Based on that, i have to search for txstatus= . Note: Values of event, calltype and txstatus can be anything. I want to print... (1 Reply)
Discussion started by: itsmesanju
1 Replies

3. Shell Programming and Scripting

syntax question in regards to nested awk statements

Hello all, I am writing up an input file and I was hoping I could get some guidance as to how to best consolidate these 2 awk statements for 1 while loop. Here's my input file # cat databases.lst #NOTE: These entries are delimited by tabs "\t" #oracleSID name/pass # db11 ... (2 Replies)
Discussion started by: Keepcase
2 Replies

4. Shell Programming and Scripting

Nested case inside awk

please let me know if the below code could be written efficiently inside single awk case "$INP" in ksh) cat catalog | awk 'BEGIN {FS=",";} { print $2 } END {}' ;; pset) cat catalog | awk 'BEGIN {FS=",";} { print $3 } END {}' ;; dml) cat catalog | awk 'BEGIN {FS=",";} {... (2 Replies)
Discussion started by: cvsanthosh
2 Replies

5. Shell Programming and Scripting

Help with nested $s and quotations in bash / awk

Folks - newbie bash coder here and I'd like to get your help to make the code below work. As you can see, I was trying to count the total number of lines with the 3rd value >= 15 in a file and wanted to make the threshold "15" configurable, but apparently the $THRESHOLD value was not populated... (3 Replies)
Discussion started by: bashzipper
3 Replies

6. Shell Programming and Scripting

Nested awk Statements

Hello again everyone, yes, I'm back again for more help! So I'm attempting to read two separate files and generate some XML code from that. My current code is: BEGIN { print "<?xml version=\"1.0\" encoding=\"utf-8\">" print "<Export>" } { x=1; print "<section name=\"Query" NR "\">"... (5 Replies)
Discussion started by: Parrakarry
5 Replies

7. Shell Programming and Scripting

Nested if not working with /usr/xpg4/bin/awk

Hi, I am trying to do if inside the If in /usr/xpg4/bin/awk. But I am getting below error : /usr/xpg4/bin/awk -v a="${THREADIDARR }" 'BEGIN {FS="|"; n=split(a,b," "); for(i=1; i<=n; i++) c]=1;} length($3) == 0{ftag == 1{{print}}; length($3) != 0{$3 in c{ftag=1;print;} !$3 in c{ftag=0;}}'... (4 Replies)
Discussion started by: nes
4 Replies

8. Shell Programming and Scripting

How to add second variable in awk nested if condition?

Hi Gurus, I have a command to assign value based on input value. current condition is "if pattern matches "case", then assign "HOLD" else "SUCC"right now, I need to add one more condition (variable name is VAR). the condition is "if pattern1 matches "case", then assign "HOLD" else if... (2 Replies)
Discussion started by: ken6503
2 Replies

9. Shell Programming and Scripting

awk nested looping?

I am trying to parse a text file and send its output to another file but I am having trouble conceptualizing how I am supposed to do this in awk. The text file has a organization like so: Name Date Status Location (city, state, zip fields) Where each of these is on a separate line in... (1 Reply)
Discussion started by: kellyanneghj
1 Replies

10. Shell Programming and Scripting

awk - multiple and nested if-then-else

Hello. I would like to convert the following piece of code from bash to awk. Here are bash variables in a bash script. CUR_ROW_ID and ROW_ID_TO_SEARCH contains a string which represent a row id. The string contain a valid row id. CUR_ROW_ID sometimes may be null. CUR_VALUE... (3 Replies)
Discussion started by: jcdole
3 Replies
webadm_selinux(8)					webadm SELinux Policy documentation					 webadm_selinux(8)

NAME
webadm_r - Web administrator role. - Security Enhanced Linux Policy DESCRIPTION
SELinux supports Roles Based Access Control (RBAC), some Linux roles are login roles, while other roles need to be transition into. Note: Examples in this man page will use the staff_u SELinux user. Non login roles are usually used for administrative tasks. For example, tasks that require root privileges. Roles control which types a user can run processes with. Roles often have default types assigned to them. The default type for the webadm_r role is webadm_t. The newrole program to transition directly to this role. newrole -r webadm_r -t webadm_t sudo is the preferred method to do transition from one role to another. You setup sudo to transition to webadm_r by adding a similar line to the /etc/sudoers file. USERNAME ALL=(ALL) ROLE=webadm_r TYPE=webadm_t COMMAND sudo will run COMMAND as staff_u:webadm_r:webadm_t:LEVEL When using a a non login role, you need to setup SELinux so that your SELinux user can reach webadm_r role. Execute the following to see all of the assigned SELinux roles: semanage user -l You need to add webadm_r to the staff_u user. You could setup the staff_u user to be able to use the webadm_r role with a command like: $ semanage user -m -R 'staff_r system_r webadm_r' staff_u BOOLEANS
SELinux policy is customizable based on least access required. webadm policy is extremely flexible and has several booleans that allow you to manipulate the policy and run webadm with the tightest access possible. If you want to determine whether webadm can manage generic user files, you must turn on the webadm_manage_user_files boolean. Disabled by default. setsebool -P webadm_manage_user_files 1 If you want to determine whether webadm can read generic user files, you must turn on the webadm_read_user_files boolean. Disabled by default. setsebool -P webadm_read_user_files 1 If you want to allow users to resolve user passwd entries directly from ldap rather then using a sssd server, you must turn on the authlo- gin_nsswitch_use_ldap boolean. Disabled by default. setsebool -P authlogin_nsswitch_use_ldap 1 If you want to deny user domains applications to map a memory region as both executable and writable, this is dangerous and the executable should be reported in bugzilla, you must turn on the deny_execmem boolean. Enabled by default. setsebool -P deny_execmem 1 If you want to deny any process from ptracing or debugging any other processes, you must turn on the deny_ptrace boolean. Enabled by default. setsebool -P deny_ptrace 1 If you want to allow all domains to use other domains file descriptors, you must turn on the domain_fd_use boolean. Enabled by default. setsebool -P domain_fd_use 1 If you want to allow all domains to have the kernel load modules, you must turn on the domain_kernel_load_modules boolean. Disabled by default. setsebool -P domain_kernel_load_modules 1 If you want to allow all domains to execute in fips_mode, you must turn on the fips_mode boolean. Enabled by default. setsebool -P fips_mode 1 If you want to enable reading of urandom for all domains, you must turn on the global_ssp boolean. Disabled by default. setsebool -P global_ssp 1 If you want to allow confined applications to run with kerberos, you must turn on the kerberos_enabled boolean. Enabled by default. setsebool -P kerberos_enabled 1 If you want to allow logging in and using the system from /dev/console, you must turn on the login_console_enabled boolean. Enabled by default. setsebool -P login_console_enabled 1 If you want to allow system to run with NIS, you must turn on the nis_enabled boolean. Disabled by default. setsebool -P nis_enabled 1 If you want to allow confined applications to use nscd shared memory, you must turn on the nscd_use_shm boolean. Disabled by default. setsebool -P nscd_use_shm 1 If you want to disallow programs, such as newrole, from transitioning to administrative user domains, you must turn on the secure_mode boolean. Enabled by default. setsebool -P secure_mode 1 If you want to allow unconfined executables to make their stack executable. This should never, ever be necessary. Probably indicates a badly coded executable, but could indicate an attack. This executable should be reported in bugzilla, you must turn on the selin- uxuser_execstack boolean. Enabled by default. setsebool -P selinuxuser_execstack 1 If you want to allow ssh logins as sysadm_r:sysadm_t, you must turn on the ssh_sysadm_login boolean. Disabled by default. setsebool -P ssh_sysadm_login 1 If you want to allow the graphical login program to login directly as sysadm_r:sysadm_t, you must turn on the xdm_sysadm_login boolean. Disabled by default. setsebool -P xdm_sysadm_login 1 MANAGED FILES
The SELinux process type webadm_t can manage files labeled with the following file types. The paths listed are the default paths for these file types. Note the processes UID still need to have DAC permissions. httpd_config_t /etc/httpd(/.*)? /etc/nginx(/.*)? /etc/apache(2)?(/.*)? /etc/cherokee(/.*)? /etc/lighttpd(/.*)? /etc/apache-ssl(2)?(/.*)? /var/lib/openshift/.httpd.d(/.*)? /var/lib/stickshift/.httpd.d(/.*)? /etc/vhosts /etc/thttpd.conf httpd_lock_t httpd_log_t /srv/([^/]*/)?www/logs(/.*)? /var/www(/.*)?/logs(/.*)? /var/log/glpi(/.*)? /var/log/cacti(/.*)? /var/log/httpd(/.*)? /var/log/nginx(/.*)? /var/log/apache(2)?(/.*)? /var/log/php-fpm(/.*)? /var/log/cherokee(/.*)? /var/log/lighttpd(/.*)? /var/log/suphp.log.* /var/log/thttpd.log.* /var/log/apache-ssl(2)?(/.*)? /var/log/cgiwrap.log.* /var/www/stickshift/[^/]*/log(/.*)? /var/www/miq/vmdb/log(/.*)? /var/log/roundcubemail(/.*)? /var/log/php_errors.log.* /var/log/dirsrv/admin-serv(/.*)? /var/lib/openshift/.log/httpd(/.*)? /var/www/openshift/console/log(/.*)? /var/www/openshift/broker/httpd/logs(/.*)? /var/www/openshift/console/httpd/logs(/.*)? /etc/httpd/logs httpd_modules_t /usr/lib/httpd(/.*)? /usr/lib/apache(/.*)? /usr/lib/cherokee(/.*)? /usr/lib/lighttpd(/.*)? /usr/lib/apache2/modules(/.*)? /etc/httpd/modules httpd_php_tmp_t httpd_script_exec_type httpd_suexec_tmp_t httpd_tmp_t /var/run/user/apache(/.*)? /var/www/openshift/console/tmp(/.*)? httpd_unit_file_t /usr/lib/systemd/system/httpd.* /usr/lib/systemd/system/jetty.* /usr/lib/systemd/system/nginx.* /usr/lib/systemd/system/php-fpm.* httpd_var_run_t /var/run/mod_.* /var/run/wsgi.* /var/run/httpd.* /var/run/nginx.* /var/run/apache.* /var/run/php-fpm(/.*)? /var/run/lighttpd(/.*)? /var/lib/php/session(/.*)? /var/lib/php/wsdlcache(/.*)? /var/run/dirsrv/admin-serv.* /var/www/openshift/broker/httpd/run(/.*)? /var/www/openshift/console/httpd/run(/.*)? /opt/dirsrv/var/run/dirsrv/dsgw/cookies(/.*)? /var/run/thttpd.pid /var/run/gcache_port /var/run/cherokee.pid httpdcontent public_content_rw_t /var/spool/abrt-upload(/.*)? systemd_passwd_var_run_t /var/run/systemd/ask-password(/.*)? /var/run/systemd/ask-password-block(/.*)? user_home_t /home/[^/]*/.+ user_tmp_t /var/run/user(/.*)? /tmp/hsperfdata_root /var/tmp/hsperfdata_root /tmp/gconfd-.* webadm_tmp_t COMMANDS
semanage fcontext can also be used to manipulate default file context mappings. semanage permissive can also be used to manipulate whether or not a process type is permissive. semanage module can also be used to enable/disable/install/remove policy modules. semanage boolean can also be used to manipulate the booleans system-config-selinux is a GUI tool available to customize SELinux policy settings. AUTHOR
This manual page was auto-generated using sepolicy manpage . SEE ALSO
selinux(8), webadm(8), semanage(8), restorecon(8), chcon(1), sepolicy(8) , setsebool(8) mgrepl@redhat.com webadm webadm_selinux(8)
All times are GMT -4. The time now is 10:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy