A:
Simplest way: open your file with a text editor and simply delete the comment
#!/bin/bash
#
# Check the build is 32 or 64 bit
if [[ $BARCH == "x86_64" ]] ; then
# Download the "Portable Autodesk 3ds Max 2012" installer
wget -O "Autodesk3DMax_Portable_2012_installer_x86_x64.exe" ""
# Remove the file
rm "Autodesk3DMax_Portable_2012_installer_x86_x64.exe"
fi
A:
The comment is just the beginning of a script, and thus you can easily delete the comment
#!/bin/bash
#
# Check the build is 32 or 64 bit
if [[ $BARCH == "x86_64" ]] ; then
# Download the "Portable Autodesk 3ds Max 2012" installer
wget -O "Autodesk3DMax_Portable_2012_installer_x86_x64.exe" ""
# Remove the file
rm "Autodesk3DMax_Portable_2012_installer_x86_x64.exe"
fi
Alternatively you can use the sed command to delete a whole line:
sed -i.back -r '1,/^#/d' test.sh
The third edition of the International Health Policy Conference (IHPC) – an annual multidisciplinary forum where international experts in health policy discuss and debate policy and research – will take place at the University of Hong Kong on October 1st and 2nd, 2018.
The conference attracts over 1,000 participants from more than 100 countries, and provides a platform for policy debates and exchanges between the different fields of health policy and research. It also builds dialogue and communication between academia and practice.
The policy debates are interdisciplinary and cross ac619d1d87
Related links:
Comments