我正在編寫腳本來自動管理我的git電子郵件配置。在我的腳本中,我想輸出一條消息,通知用戶電子郵件配置已更改。我正在使用命令git config user.email
來獲取新的電子郵件地址。但是,它將其打印到換行符。我想打印它到我的信息相同的行。在bash中刪除換行符
這是我現在有:
echo "Email not configured to Work in Work directory.";
git config user.email "[email protected]"
echo "Git email configuration has now been changed to "
git config user.email
你試過告訴'echo'不打印換行? –