We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256a3da commit 736b88eCopy full SHA for 736b88e
bash_profile
@@ -1 +1 @@
1
-source ~/.bashrc
+. ~/.bashrc
zsh/icc
@@ -4,19 +4,19 @@ if [ -d "/opt/intel/Compiler" ] ; then
4
if [ -r $iccvars_path ] ; then
5
case `uname -m` in
6
x86_64)
7
- source $iccvars_path intel64
+ . $iccvars_path intel64
8
;;
9
i*86)
10
- source $iccvars_path ia32
+ . $iccvars_path ia32
11
12
ia64)
13
- source $iccvars_path ia64
+ . $iccvars_path ia64
14
15
esac
16
fi
17
elif [ -d "/opt/intel/cc" ] || [ -d "/opt/intel/cce" ] ; then
18
iccvars_path=$(echo /opt/intel/cc*/(10|9).*/bin/iccvars.sh(On[1]))
19
20
- source $iccvars_path
+ . $iccvars_path
21
22
0 commit comments