csh与bash比较:一.csh的while循环控制结构及if then:#!/bin/csh -fwhile ($#argv >= 1) if ("$1" == "-s") then shift if ($#argv >= 1) then set source = $1 shift endif else if ("$1" == "-c") then set comp
1.执行 cd 含义:进入用户根目录 2.执行 cp /etc/skel/.bashrc ./ 含义:拷贝系统自带的bashrc文件至用户根目录 3.执行 vi .bash_profile 含义:新建bash_profile,因为ssh登陆默认先执行改文件 4.输入 if [ -f ~/.bashrc ]; then . ~/.bashrc fi 含义:在bash_profile里面调用bashrc