Files
mastering-unix-ss/chapter23/function_get_sna_info
Fabio Scotto di Santolo 4cc88d2f6e initial commit
2020-07-28 19:28:25 +02:00

12 lines
188 B
Plaintext
Executable File

get_sna_info ()
{
# If the system is using SNA save the SNA configuration
sna -d s # Syntax for 2.x SNA
if (( $? != 0 ))
then
lssrc -s sna -l # must be SNA 1.x
fi
}