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
Post a Comment