Windows Powershell
1.创建并修改Windows Powershell 启动执行文件
echo $PROFILE
编辑C:\Users\hongyang.jia\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
2.按照以下格式输入命令
function 别名 { 需要替代的命令 }
例如我的Git简写命令
function gs {git status}
Ubuntu shell
vi ~/Desktop/init/note.sh
添加如下:
function scopy()
{
local fileName
if [ "$1" ] ; then
fileName=$1
fi
sshpass -p my_passworld scp -r hongyang.jia@ipaddr:$fileName .
}
function smount()
{
mount -t cifs -o username="hongyang.jia",password="my_passworld " //ipaddr/hongyang.jia /mnt/star
}
function sremote()
{
sshpass -p my_passworld ssh hongyang.jia@ipaddr ;clear
}
echo be ready
vi ~/.bashrc
最后面添加一行
source ~/Desktop/init/note.sh
然后
source ~/.bashrc