bash shell-script 작성법
2019. 6. 4. 16:29ㆍ임베디드/ubuntu
https://www.taniarascia.com/how-to-create-and-use-bash-scripts/
#!/bin/bash
read -r -p 'Commit message: ' desc # prompt user for commit message
git add . # track all files
git add -u # track deletes
git commit -m "$desc" # commit with message
git push origin master # push to origin
위 출처로 git 자동 스크립트를 짤 수 있다
'임베디드 > ubuntu' 카테고리의 다른 글
google ip 검색해서 접속하기 (0) | 2019.06.29 |
---|---|
VirtualBox를 사용하여 Ubuntu 18.04 설치하기 (0) | 2019.06.28 |
ubuntu 그림판 kolourpaint4 (0) | 2019.05.28 |
우분투 16.04 시간 맞추기 network time protocol (0) | 2019.05.15 |
vim 여러 줄 탭 (0) | 2019.05.15 |