SlideShare a Scribd company logo
1 of 32
Download to read offline
David B. Horvath, CCP, MS
February 2022 SUGUKI
UNIX X Command Tips and Tricks
Presenter
The Author can be contacted at:
504 Longbotham Drive, Aston PA 19014-2502,
USA
Phone: +1-610-859-8826
Email: dhorvath@cobs.com
Web: http://www.cobs.com/
LI: http://www.linkedin.com/in/dbhorvath
David B. Horvath, CCP, MS
Copyright © 2019 - 2022 David B. Horvath, CCP — All Rights
Reserved
Abstract
SAS provides the ability to execute operating system level commands from within your SAS
code – generically known as the “X Command”. This session explores the various commands,
the advantages and disadvantages of each, and their alternatives. The focus is on UNIX/Linux
but much of the same applies to Windows as well. Under SAS EG, any issued commands
execute on the SAS engine, not necessarily on the PC.
 X
 %sysexec
 Call system
 Systask command
 Filename pipe
 &SYSRC
 Waitfor
Alternatives will also be addressed – how to handle when NOXCMD is the default for your
installation, saving results, and error checking.
My Background
 David is an IT Professional who has worked with various platforms since the
1980’s with a variety of development and analysis tools.
 He has presented at PhilaSUG, SESUG, and SGF previously and has presented
workshops and seminars in Australia, France, the US, Canada, and Oxford
England (about the British Author Nevil Shute).
 He holds an undergraduate degree in Computer and Information Sciences from
Temple University and a Masters in Organizational Dynamics from UPENN. He
achieved the Certified Computing Professional designation with honors.
 Most of his career has been in consulting (although recently he has been in-
house) in the Philadelphia PA area. He is currently in Data Analytics
"Engineering" at a Regional Bank.
 He has several books to his credit (none SAS related) and is an Adjunct Instructor
covering IT topics.
Options
 Execution of any System command from within your SAS program is dependent
on one option's setting:
XCMD Enables the X command in SAS.
 Which can only be set at startup:
options xcmd;
____
30
WARNING 30-12: SAS option XCMD is valid only at startup of the SAS
System. The SAS option is ignored.
 If NOXCMD is set, you're out of luck. Sorry!
 University Edition is NOXCMD
X
 The basic X Command
 Runs independent of data steps and macros
 The SAS Engine will interpret some commands
 Does not spawn off sub-process
 This fact is important because information does not persist between sub-
processes
 Handling within the log is annoying
X
 X Command Examples:
 pwd and cd under UNIX:
NOTE: Current working directory is
'/this/is/the/sas/install/directory'.
26 x "pwd" ; /* works within SAS */
27 x "cd /my/directory/is/here"
27 ! ; /* works within SAS */
NOTE: Current working directory is '/my/directory/is/here'.
28 x "pwd" ; /* works within SAS */
 echo and combined commands under UNIX:
29 x "echo $HOME"
29 ! ; /* works but no output */
30 x "pwd; cd $HOME; pwd"
30 ! ; /* no output, works? */
X
 X Command Examples:
 We can combine commands on one line under UNIX:
31 x 'echo start; echo mid; echo end>temp2.txt'
31 ! ; /* output to file, works */
 > sends STDOUT to a file
 I know this works because I can look at the output file (temp2.txt):
end
 Why didn't "start" and "mid" appear?
 Because of the way I wrote the statement!
X
 X Command Examples:
 We can combine commands on one line under UNIX:
37 x '(echo start; echo mid; echo end)>temp1.txt'
37 ! /* output to file, all 3 statements to file */
 I know this works because I can look at the output file (temp1.txt):
start
mid
end
 The difference is the parenthesis which combines the output in UNIX
 Because of the way I wrote the statement!
X and %SYSRC
 How do I know a command worked?
 %SYSRC will tell me – returns the UNIX error code
37 x '(echo start; echo mid; echo end)>temp1.txt'
37 ! ; /* output to file, all 3 statements to file */
SYMBOLGEN: Macro variable SYSRC resolves to 0
38 %put &SYSRC;
0
 Zero is success in UNIX
X and %SYSRC
 How do I know a command worked?
 If the command does not exist, we get 127:
41 x 'this_command_doesnot_exist 2>test5.txt'
41 ! ; /* non-zero RC */
SYMBOLGEN: Macro variable SYSRC resolves to 127
42 %put &SYSRC;
127
 And we can save error output (2> sends STDERR to a file):
/bin/bash: this_command_doesnot_exist: command not found
43 x 'ls -al no_such_file'
43 ! ; /* non-zero RC */
SYMBOLGEN: Macro variable SYSRC resolves to 2
44 %put &SYSRC;
2
X and %SYSRC
 How do I know a command worked?
 The command itself may return an error as well:
43 x 'ls -al no_such_file'
43 ! ; /* non-zero RC */
SYMBOLGEN: Macro variable SYSRC resolves to 2
44 %put &SYSRC;
2
 In this case, "no_such_file" does not exist
 'man ls' executed at the command line will provide this information
Exit status:
0 if OK,
1 if minor problems (e.g., cannot access subdirectory),
2 if serious trouble (e.g., cannot access command-line argument).
%sysexec – Macros
 We can execute system commands within a macro:
72 %macro commands;
73 %sysexec %str(ls -al > test6.txt);
74 %put &SYSRC;
75 %sysexec %str(command_doesnot_exist 2> test7.txt);
76 %put &SYSRC;
77 %mend commands;
78
79 %commands;
 Note the use of %SYSRC
%sysexec – Macros
 And get the following results:
79 %commands;
MLOGIC(COMMANDS): Beginning execution.
MLOGIC(COMMANDS): %SYSEXEC ls al test6.txt
MLOGIC(COMMANDS): %PUT &SYSRC
SYMBOLGEN: Macro variable SYSRC resolves to 0
0
MLOGIC(COMMANDS): %SYSEXEC command_doesnot_exist 2 test7.txt
MLOGIC(COMMANDS): %PUT &SYSRC
SYMBOLGEN: Macro variable SYSRC resolves to 127
127
MLOGIC(COMMANDS): Ending execution.
Call System – Data Step
 Use Call System within a data step:
85 data dir;
86 filename commands PIPE "ls | head -2";
87 infile commands truncover;
88 input result $char60.;
89
90 string="echo " || result || " >> test4.txt";
91 call system(string); /* no output - but it executes multiple
times */
92 system_rc=symget("SYSRC");
93 call system("this_command_doesnot_exist");
94 system_rc2=symget("SYSRC");
95
96 systask command "pwd" wait shell; /* runs once */
NOTE: LOG/Output from task "task59"
> /my/directory/is/here
NOTE: End of LOG/Output from task "task59"
97 output;
98 run;
Call System – Data Step
 Call System results:
NOTE: The infile COMMANDS is:
Pipe command="ls | head -2"
NOTE: 2 records were read from the infile COMMANDS.
The minimum record length was 22.
The maximum record length was 24.
NOTE: The data set WORK.DIR has 2 observations and 4
variables.
NOTE: Compressing data set WORK.DIR increased size by 100.00
percent.
Compressed is 2 pages; un-compressed would require 1
pages.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.00 seconds
Call System – Data Step
 Call System output:
 Results:
 Test4.txt:
FILE1
FILE2
 Two records were read from infile
 Two records were written to work.dir
 Two records were written to test4.txt via the echo command
 SAS Engine does not interpret these commands
Obs result string system_rc system_rc2
1FILE1 echo FILE1 >> test4.txt 0 127
2FILE2 echo FILE2 >> test4.txt 0 127
'Systask command'
 'Systask command' operates two modes:
 With "shell" modifier, SAS does not interpret the commands
 Without "shell", it behaves like X
 &SYSRC is set
54 systask command 'echo BOL $HOME EOL' wait;
NOTE: LOG/Output from task "task62"
> BOL $HOME EOL
NOTE: End of LOG/Output from task "task62"
54 ! /* $HOME not interpreted */
55 systask command "echo BOL $HOME EOL" wait shell;
NOTE: LOG/Output from task "task63"
> BOL /my/directory/is/here EOL
NOTE: End of LOG/Output from task "task63"
55 ! /* $HOME interpreted */
'Systask command' and 'Systask list'
 Other Options:
 Wait: wait for this command to execute before starting next
 Cleanup: wait for this command and any nowait before starting next
 Shell: Can also specify the shell to use: shell="/usr/bin/ksh"
 Status: Can specify a status variable to check later (rather than &SYSRC)
 Taskname: Can specify task name for later use in Waitfor
 Systask list will provide status of any nowait systasks
"task150" --------------
Type: Task
State: COMPLETE
Status Macro Variable: Unspecified
73
74 systask list;
'Systask command' and 'Waitfor'
 The waitfor command is used to wait for systask command nowait to
complete
 Can wait for _ANY_ of listed tasknames to complete (default)
 Can wait for _ALL_ of listed tasknames to complete
 Can specify length of time to wait: Timeout=number-of-seconds
 General form is
waitfor _ALL_ task1 task2 task3;
Filename pipe
 Acts like normal filename statement
 Accepts data written from SAS (File/Put)
 Provides data for SAS to read (Infile/Input)
 Allows for execution of UNIX command
 Is more efficient than running command separately (parallelization)
 Handy when you have version limitations:
filename gzipit zip '/my/output/directory/file.txt.gz' gzip; *
requires 9.4M5;
filename gzipit pipe 'gzip -c >
/my/output/directory/file.txt.gz'; * run the UNIX gzip;
Filename Pipe – Earlier Code Example
 UNIX Commands are Executed prior to input statement:
85 data dir;
86 filename commands PIPE "ls | head -2";
87 infile commands truncover;
88 input result $char60.;
89
90 string="echo " || result || " >> test4.txt";
91 call system(string); /* no output - but it executes multiple
times */
92 system_rc=symget("SYSRC");
93 call system("this_command_doesnot_exist");
94 system_rc2=symget("SYSRC");
95
96 systask command "pwd" wait shell; /* runs once */
NOTE: LOG/Output from task "task59"
> /my/directory/is/here
NOTE: End of LOG/Output from task "task59"
97 output;
98 run;
Filename Pipe
 Unfortunately, &SYSRC is not set by Filename Pipe:
113 data baddir;
114 filename commands PIPE "lx ; lx ; lx";
115 system_rc=symget("SYSRC");
116
117 infile commands truncover;
118 input result $char60.;
119 output;
120 run;
NOTE: The infile COMMANDS is:
Pipe command="lx ; lx ; lx"
NOTE: 3 records were read from the infile COMMANDS.
The minimum record length was 32.
The maximum record length was 32.
Shell Scripts
 When NOXCMD is set, none of these will work.
 You can move the commands into a shell script:
#!/bin/ksh
cd /desired/directory
# You can check return codes here with the $?
if [[ $? -gt 0 ]]; then
echo "cd failed"
exit 3
fi
# if we get here 'cd' succeeded
ls –al | head -2 > temp.txt
sas your_sas_part_1.sas
pwd
sas your_sas_part_2.sas
gzip /my/output/directory/file.txt
Final Thoughts
 It is all about choices
 Sometimes it is better to execute UNIX commands in your program
 Sometimes not
Wrap Up
Questions
and
Answers
?!
?!
?!
?!
?
?
?
?
! !
! !
Named Pipes under UNIX –
Filename Pipe with NOXCMD
 I can use UNIX “Named Pipes” with files
 Datasets make use of the "Sequential Data Engine" ("TAPE" engine)
 External Command Example – Write:
 UNIX/Linux commands:
mknod mypipe p
gzip –c mypipe > input.gz & /* runs in background */
sas writepipe.sas
 writepipe.sas Program:
libname test "mypipe";
data test.test_no (compress=no drop=text1-text44) ;
array text[44] $20 (/* list of 44 words or phrases */);
format longstring $200. ;
DO indexvariable=1 TO 20000000;
/* create a bunch of random values */
output test.test_no;
END;
run;
Named Pipes under UNIX –
Filename Pipe with NOXCMD
 External Command Example – Read:
 UNIX/Linux commands:
mknod mypipe p /* not needed if created before)
gzip –-stdout input.gz > mypipe & /* runs in background/parallel */
sas readpipe.sas
 readpipe.sas Program:
libname test "mypipe";
data _null_;
set test.test_no;
retain total 0;
total=total+num1;
run;
UNIX X Command Tips and Tricks
 The Author can be contacted at:
David B. Horvath, CCP
504 Longbotham Drive, Aston PA 19014-2502, USA
Phone: +1-610-859-8826
Email: dhorvath@cobs.com
Web: http://www.cobs.com/
LI: http://www.linkedin.com/in/dbhorvath
References
 x, sysexc, system:
 http://support.sas.com/documentation/cdl/en/hostunx/61879/HTML/default/viewer.htm#xcomm.htm
 http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#p0w085btd5r0a4n1km4bcdpgqibt.htm
 %sysexec:
 http://support.sas.com/documentation/cdl/en/mcrolref/62978/HTML/default/viewer.htm#n08ecabbpebv2xn13ieu8uylrohm.htm
 filename pipe:
 http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#n1ceb0xedanuj3n19l3g73awk1wf.htm
 https://documentation.sas.com/?docsetId=hostunx&docsetTarget=n1ceb0xedanuj3n19l3g73awk1wf.htm&docsetVersion=9.4&lo
cale=en
 bash scripts:
 https://www.taniarascia.com/how-to-create-and-use-bash-scripts/
 systask:
 http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#p0lzxl2mwndagun1dtxbst9s4jea.htm
References
 xsync:
 https://documentation.sas.com/?docsetId=hostunx&docsetTarget=p0is4umpbeej5pn
1xwc8mwgt9qz5.htm&docsetVersion=9.4&locale=en
 xcmd:
 http://support.sas.com/documentation/cdl/en/hostwin/69955/HTML/default/viewer.ht
m#p0xtd57b40ehdfn1jyk8yxemfrtv.htm
 x command (x windows) options:
 https://documentation.sas.com/?docsetId=hostunx&docsetTarget=n1nx651zrt6pdcn1
71xjr3xwfxhq.htm&docsetVersion=9.4&locale=en
 waitfor:
 https://documentation.sas.com/?docsetId=hostunx&docsetTarget=p0w8zwo1dyssdfn
1mjm11dt2v7e2.htm&docsetVersion=9.4&locale=en
Wrap Up (For Real)
Questions
and
Answers
?!
?!
?!
?!
?
?
?
?
! !
! !

More Related Content

Similar to 202202 SUGUKI UNIX X Command Tips and Tricks

OverviewIn this assignment you will write your own shell i.docx
OverviewIn this assignment you will write your own shell i.docxOverviewIn this assignment you will write your own shell i.docx
OverviewIn this assignment you will write your own shell i.docx
alfred4lewis58146
 
Linux or unix interview questions
Linux or unix interview questionsLinux or unix interview questions
Linux or unix interview questions
Teja Bheemanapally
 
Batch file programming
Batch file programmingBatch file programming
Batch file programming
swapnil kapate
 
Instructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docxInstructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docx
normanibarber20063
 
Shellcoding in linux
Shellcoding in linuxShellcoding in linux
Shellcoding in linux
Ajin Abraham
 
Auditing the Opensource Kernels
Auditing the Opensource KernelsAuditing the Opensource Kernels
Auditing the Opensource Kernels
Silvio Cesare
 

Similar to 202202 SUGUKI UNIX X Command Tips and Tricks (20)

Monitoring MySQL with DTrace/SystemTap
Monitoring MySQL with DTrace/SystemTapMonitoring MySQL with DTrace/SystemTap
Monitoring MySQL with DTrace/SystemTap
 
OverviewIn this assignment you will write your own shell i.docx
OverviewIn this assignment you will write your own shell i.docxOverviewIn this assignment you will write your own shell i.docx
OverviewIn this assignment you will write your own shell i.docx
 
Linux kernel debugging
Linux kernel debuggingLinux kernel debugging
Linux kernel debugging
 
Watch Re-runs on your SQL Server with RML Utilities
Watch Re-runs on your SQL Server with RML UtilitiesWatch Re-runs on your SQL Server with RML Utilities
Watch Re-runs on your SQL Server with RML Utilities
 
Ch04 system administration
Ch04 system administration Ch04 system administration
Ch04 system administration
 
Ch04
Ch04Ch04
Ch04
 
Useful Linux and Unix commands handbook
Useful Linux and Unix commands handbookUseful Linux and Unix commands handbook
Useful Linux and Unix commands handbook
 
Linux or unix interview questions
Linux or unix interview questionsLinux or unix interview questions
Linux or unix interview questions
 
exercises-log-management-rsyslog.pdf
exercises-log-management-rsyslog.pdfexercises-log-management-rsyslog.pdf
exercises-log-management-rsyslog.pdf
 
Batch file programming
Batch file programmingBatch file programming
Batch file programming
 
Instructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docxInstructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docx
 
Shellcoding in linux
Shellcoding in linuxShellcoding in linux
Shellcoding in linux
 
Unix Administration 2
Unix Administration 2Unix Administration 2
Unix Administration 2
 
Computer technicians-quick-reference-guide
Computer technicians-quick-reference-guideComputer technicians-quick-reference-guide
Computer technicians-quick-reference-guide
 
Auditing the Opensource Kernels
Auditing the Opensource KernelsAuditing the Opensource Kernels
Auditing the Opensource Kernels
 
2004 ugm-tips-tricks
2004 ugm-tips-tricks2004 ugm-tips-tricks
2004 ugm-tips-tricks
 
50 Most Frequently Used UNIX Linux Commands -hmftj
50 Most Frequently Used UNIX  Linux Commands -hmftj50 Most Frequently Used UNIX  Linux Commands -hmftj
50 Most Frequently Used UNIX Linux Commands -hmftj
 
Adding System Call to Kernel
Adding System Call to KernelAdding System Call to Kernel
Adding System Call to Kernel
 
MINCS - containers in the shell script (Eng. ver.)
MINCS - containers in the shell script (Eng. ver.)MINCS - containers in the shell script (Eng. ver.)
MINCS - containers in the shell script (Eng. ver.)
 
Linux
LinuxLinux
Linux
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

202202 SUGUKI UNIX X Command Tips and Tricks

  • 1. David B. Horvath, CCP, MS February 2022 SUGUKI UNIX X Command Tips and Tricks
  • 2. Presenter The Author can be contacted at: 504 Longbotham Drive, Aston PA 19014-2502, USA Phone: +1-610-859-8826 Email: dhorvath@cobs.com Web: http://www.cobs.com/ LI: http://www.linkedin.com/in/dbhorvath David B. Horvath, CCP, MS Copyright © 2019 - 2022 David B. Horvath, CCP — All Rights Reserved
  • 3. Abstract SAS provides the ability to execute operating system level commands from within your SAS code – generically known as the “X Command”. This session explores the various commands, the advantages and disadvantages of each, and their alternatives. The focus is on UNIX/Linux but much of the same applies to Windows as well. Under SAS EG, any issued commands execute on the SAS engine, not necessarily on the PC.  X  %sysexec  Call system  Systask command  Filename pipe  &SYSRC  Waitfor Alternatives will also be addressed – how to handle when NOXCMD is the default for your installation, saving results, and error checking.
  • 4. My Background  David is an IT Professional who has worked with various platforms since the 1980’s with a variety of development and analysis tools.  He has presented at PhilaSUG, SESUG, and SGF previously and has presented workshops and seminars in Australia, France, the US, Canada, and Oxford England (about the British Author Nevil Shute).  He holds an undergraduate degree in Computer and Information Sciences from Temple University and a Masters in Organizational Dynamics from UPENN. He achieved the Certified Computing Professional designation with honors.  Most of his career has been in consulting (although recently he has been in- house) in the Philadelphia PA area. He is currently in Data Analytics "Engineering" at a Regional Bank.  He has several books to his credit (none SAS related) and is an Adjunct Instructor covering IT topics.
  • 5. Options  Execution of any System command from within your SAS program is dependent on one option's setting: XCMD Enables the X command in SAS.  Which can only be set at startup: options xcmd; ____ 30 WARNING 30-12: SAS option XCMD is valid only at startup of the SAS System. The SAS option is ignored.  If NOXCMD is set, you're out of luck. Sorry!  University Edition is NOXCMD
  • 6. X  The basic X Command  Runs independent of data steps and macros  The SAS Engine will interpret some commands  Does not spawn off sub-process  This fact is important because information does not persist between sub- processes  Handling within the log is annoying
  • 7. X  X Command Examples:  pwd and cd under UNIX: NOTE: Current working directory is '/this/is/the/sas/install/directory'. 26 x "pwd" ; /* works within SAS */ 27 x "cd /my/directory/is/here" 27 ! ; /* works within SAS */ NOTE: Current working directory is '/my/directory/is/here'. 28 x "pwd" ; /* works within SAS */  echo and combined commands under UNIX: 29 x "echo $HOME" 29 ! ; /* works but no output */ 30 x "pwd; cd $HOME; pwd" 30 ! ; /* no output, works? */
  • 8. X  X Command Examples:  We can combine commands on one line under UNIX: 31 x 'echo start; echo mid; echo end>temp2.txt' 31 ! ; /* output to file, works */  > sends STDOUT to a file  I know this works because I can look at the output file (temp2.txt): end  Why didn't "start" and "mid" appear?  Because of the way I wrote the statement!
  • 9. X  X Command Examples:  We can combine commands on one line under UNIX: 37 x '(echo start; echo mid; echo end)>temp1.txt' 37 ! /* output to file, all 3 statements to file */  I know this works because I can look at the output file (temp1.txt): start mid end  The difference is the parenthesis which combines the output in UNIX  Because of the way I wrote the statement!
  • 10. X and %SYSRC  How do I know a command worked?  %SYSRC will tell me – returns the UNIX error code 37 x '(echo start; echo mid; echo end)>temp1.txt' 37 ! ; /* output to file, all 3 statements to file */ SYMBOLGEN: Macro variable SYSRC resolves to 0 38 %put &SYSRC; 0  Zero is success in UNIX
  • 11. X and %SYSRC  How do I know a command worked?  If the command does not exist, we get 127: 41 x 'this_command_doesnot_exist 2>test5.txt' 41 ! ; /* non-zero RC */ SYMBOLGEN: Macro variable SYSRC resolves to 127 42 %put &SYSRC; 127  And we can save error output (2> sends STDERR to a file): /bin/bash: this_command_doesnot_exist: command not found 43 x 'ls -al no_such_file' 43 ! ; /* non-zero RC */ SYMBOLGEN: Macro variable SYSRC resolves to 2 44 %put &SYSRC; 2
  • 12. X and %SYSRC  How do I know a command worked?  The command itself may return an error as well: 43 x 'ls -al no_such_file' 43 ! ; /* non-zero RC */ SYMBOLGEN: Macro variable SYSRC resolves to 2 44 %put &SYSRC; 2  In this case, "no_such_file" does not exist  'man ls' executed at the command line will provide this information Exit status: 0 if OK, 1 if minor problems (e.g., cannot access subdirectory), 2 if serious trouble (e.g., cannot access command-line argument).
  • 13. %sysexec – Macros  We can execute system commands within a macro: 72 %macro commands; 73 %sysexec %str(ls -al > test6.txt); 74 %put &SYSRC; 75 %sysexec %str(command_doesnot_exist 2> test7.txt); 76 %put &SYSRC; 77 %mend commands; 78 79 %commands;  Note the use of %SYSRC
  • 14. %sysexec – Macros  And get the following results: 79 %commands; MLOGIC(COMMANDS): Beginning execution. MLOGIC(COMMANDS): %SYSEXEC ls al test6.txt MLOGIC(COMMANDS): %PUT &SYSRC SYMBOLGEN: Macro variable SYSRC resolves to 0 0 MLOGIC(COMMANDS): %SYSEXEC command_doesnot_exist 2 test7.txt MLOGIC(COMMANDS): %PUT &SYSRC SYMBOLGEN: Macro variable SYSRC resolves to 127 127 MLOGIC(COMMANDS): Ending execution.
  • 15. Call System – Data Step  Use Call System within a data step: 85 data dir; 86 filename commands PIPE "ls | head -2"; 87 infile commands truncover; 88 input result $char60.; 89 90 string="echo " || result || " >> test4.txt"; 91 call system(string); /* no output - but it executes multiple times */ 92 system_rc=symget("SYSRC"); 93 call system("this_command_doesnot_exist"); 94 system_rc2=symget("SYSRC"); 95 96 systask command "pwd" wait shell; /* runs once */ NOTE: LOG/Output from task "task59" > /my/directory/is/here NOTE: End of LOG/Output from task "task59" 97 output; 98 run;
  • 16. Call System – Data Step  Call System results: NOTE: The infile COMMANDS is: Pipe command="ls | head -2" NOTE: 2 records were read from the infile COMMANDS. The minimum record length was 22. The maximum record length was 24. NOTE: The data set WORK.DIR has 2 observations and 4 variables. NOTE: Compressing data set WORK.DIR increased size by 100.00 percent. Compressed is 2 pages; un-compressed would require 1 pages. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.00 seconds
  • 17. Call System – Data Step  Call System output:  Results:  Test4.txt: FILE1 FILE2  Two records were read from infile  Two records were written to work.dir  Two records were written to test4.txt via the echo command  SAS Engine does not interpret these commands Obs result string system_rc system_rc2 1FILE1 echo FILE1 >> test4.txt 0 127 2FILE2 echo FILE2 >> test4.txt 0 127
  • 18. 'Systask command'  'Systask command' operates two modes:  With "shell" modifier, SAS does not interpret the commands  Without "shell", it behaves like X  &SYSRC is set 54 systask command 'echo BOL $HOME EOL' wait; NOTE: LOG/Output from task "task62" > BOL $HOME EOL NOTE: End of LOG/Output from task "task62" 54 ! /* $HOME not interpreted */ 55 systask command "echo BOL $HOME EOL" wait shell; NOTE: LOG/Output from task "task63" > BOL /my/directory/is/here EOL NOTE: End of LOG/Output from task "task63" 55 ! /* $HOME interpreted */
  • 19. 'Systask command' and 'Systask list'  Other Options:  Wait: wait for this command to execute before starting next  Cleanup: wait for this command and any nowait before starting next  Shell: Can also specify the shell to use: shell="/usr/bin/ksh"  Status: Can specify a status variable to check later (rather than &SYSRC)  Taskname: Can specify task name for later use in Waitfor  Systask list will provide status of any nowait systasks "task150" -------------- Type: Task State: COMPLETE Status Macro Variable: Unspecified 73 74 systask list;
  • 20. 'Systask command' and 'Waitfor'  The waitfor command is used to wait for systask command nowait to complete  Can wait for _ANY_ of listed tasknames to complete (default)  Can wait for _ALL_ of listed tasknames to complete  Can specify length of time to wait: Timeout=number-of-seconds  General form is waitfor _ALL_ task1 task2 task3;
  • 21. Filename pipe  Acts like normal filename statement  Accepts data written from SAS (File/Put)  Provides data for SAS to read (Infile/Input)  Allows for execution of UNIX command  Is more efficient than running command separately (parallelization)  Handy when you have version limitations: filename gzipit zip '/my/output/directory/file.txt.gz' gzip; * requires 9.4M5; filename gzipit pipe 'gzip -c > /my/output/directory/file.txt.gz'; * run the UNIX gzip;
  • 22. Filename Pipe – Earlier Code Example  UNIX Commands are Executed prior to input statement: 85 data dir; 86 filename commands PIPE "ls | head -2"; 87 infile commands truncover; 88 input result $char60.; 89 90 string="echo " || result || " >> test4.txt"; 91 call system(string); /* no output - but it executes multiple times */ 92 system_rc=symget("SYSRC"); 93 call system("this_command_doesnot_exist"); 94 system_rc2=symget("SYSRC"); 95 96 systask command "pwd" wait shell; /* runs once */ NOTE: LOG/Output from task "task59" > /my/directory/is/here NOTE: End of LOG/Output from task "task59" 97 output; 98 run;
  • 23. Filename Pipe  Unfortunately, &SYSRC is not set by Filename Pipe: 113 data baddir; 114 filename commands PIPE "lx ; lx ; lx"; 115 system_rc=symget("SYSRC"); 116 117 infile commands truncover; 118 input result $char60.; 119 output; 120 run; NOTE: The infile COMMANDS is: Pipe command="lx ; lx ; lx" NOTE: 3 records were read from the infile COMMANDS. The minimum record length was 32. The maximum record length was 32.
  • 24. Shell Scripts  When NOXCMD is set, none of these will work.  You can move the commands into a shell script: #!/bin/ksh cd /desired/directory # You can check return codes here with the $? if [[ $? -gt 0 ]]; then echo "cd failed" exit 3 fi # if we get here 'cd' succeeded ls –al | head -2 > temp.txt sas your_sas_part_1.sas pwd sas your_sas_part_2.sas gzip /my/output/directory/file.txt
  • 25. Final Thoughts  It is all about choices  Sometimes it is better to execute UNIX commands in your program  Sometimes not
  • 27. Named Pipes under UNIX – Filename Pipe with NOXCMD  I can use UNIX “Named Pipes” with files  Datasets make use of the "Sequential Data Engine" ("TAPE" engine)  External Command Example – Write:  UNIX/Linux commands: mknod mypipe p gzip –c mypipe > input.gz & /* runs in background */ sas writepipe.sas  writepipe.sas Program: libname test "mypipe"; data test.test_no (compress=no drop=text1-text44) ; array text[44] $20 (/* list of 44 words or phrases */); format longstring $200. ; DO indexvariable=1 TO 20000000; /* create a bunch of random values */ output test.test_no; END; run;
  • 28. Named Pipes under UNIX – Filename Pipe with NOXCMD  External Command Example – Read:  UNIX/Linux commands: mknod mypipe p /* not needed if created before) gzip –-stdout input.gz > mypipe & /* runs in background/parallel */ sas readpipe.sas  readpipe.sas Program: libname test "mypipe"; data _null_; set test.test_no; retain total 0; total=total+num1; run;
  • 29. UNIX X Command Tips and Tricks  The Author can be contacted at: David B. Horvath, CCP 504 Longbotham Drive, Aston PA 19014-2502, USA Phone: +1-610-859-8826 Email: dhorvath@cobs.com Web: http://www.cobs.com/ LI: http://www.linkedin.com/in/dbhorvath
  • 30. References  x, sysexc, system:  http://support.sas.com/documentation/cdl/en/hostunx/61879/HTML/default/viewer.htm#xcomm.htm  http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#p0w085btd5r0a4n1km4bcdpgqibt.htm  %sysexec:  http://support.sas.com/documentation/cdl/en/mcrolref/62978/HTML/default/viewer.htm#n08ecabbpebv2xn13ieu8uylrohm.htm  filename pipe:  http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#n1ceb0xedanuj3n19l3g73awk1wf.htm  https://documentation.sas.com/?docsetId=hostunx&docsetTarget=n1ceb0xedanuj3n19l3g73awk1wf.htm&docsetVersion=9.4&lo cale=en  bash scripts:  https://www.taniarascia.com/how-to-create-and-use-bash-scripts/  systask:  http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#p0lzxl2mwndagun1dtxbst9s4jea.htm
  • 31. References  xsync:  https://documentation.sas.com/?docsetId=hostunx&docsetTarget=p0is4umpbeej5pn 1xwc8mwgt9qz5.htm&docsetVersion=9.4&locale=en  xcmd:  http://support.sas.com/documentation/cdl/en/hostwin/69955/HTML/default/viewer.ht m#p0xtd57b40ehdfn1jyk8yxemfrtv.htm  x command (x windows) options:  https://documentation.sas.com/?docsetId=hostunx&docsetTarget=n1nx651zrt6pdcn1 71xjr3xwfxhq.htm&docsetVersion=9.4&locale=en  waitfor:  https://documentation.sas.com/?docsetId=hostunx&docsetTarget=p0w8zwo1dyssdfn 1mjm11dt2v7e2.htm&docsetVersion=9.4&locale=en
  • 32. Wrap Up (For Real) Questions and Answers ?! ?! ?! ?! ? ? ? ? ! ! ! !