coolcommand: how to clear device reservation status in VIOS 2.2 and AIX v7.1
Example: devrsrv -fl hdisk33
[show me the details]
coolcommand: how to check device reservation status in VIOS 2.2 and AIX v7.1
Example: devrsrv -c query -l hdisk68
[show me the details]
coolcommand: How to recycle NFS and clear state files in AIX
Example: stopsrc -g nfs; cd /etc; rm rmtab xtab xtabdup; cd /var/statmon; rm -rf *; startsrc -g nfs; exportfs -av
[show me the details]
coolcommand: how to do a case insensitive match in ksh
Example: if [[ "$1" = @(~(i:linux|solaris)) ]];then echo Match; fi
[show me the details]