bash - How do I write a shell script to issue commands and see the output on the screen -


i want following , see commands issued , result.

cd /working_directory make clean make mrproper make variant_defconfig=msm8974_sec_hlte_spr_defconfig msm8974_sec_defconfig selinux_defconfig=selinux_defconfig make 

you ...

#!/bin/sh set -x cd /working_directory make clean make mrproper make variant_defconfig=msm8974_sec_hlte_spr_defconfig msm8974_sec_defconfig selinux_defconfig=selinux_defconfig make 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -