One liner conda install example:
$ for i in $(ls <directory>); do conda install <directory>/$i; doneSaved shell script example (if named shell.sh then you can use sh shell.sh to activate):
#!/bin/bash
for file in /etc/*
do
if [ "${file}" == "/etc/resolv.conf" ]
then
countNameservers=$(grep -c nameserver /etc/resolv.conf)
echo "Total ${countNameservers} nameservers defined in ${file}"
break
fi
done