Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- vi
- vim
- SSH
- MAC
- Anaconda
- tab space
- Visual Studio
- virtual
- HFS+
- cygwin
- hyperref
- intel compiler
- Matplotlib
- cython
- jupyter
- gfortran
- conda
- datascience
- h5py
- portforwarding
- Windows
- LaTeX
- arXiver
- c++
- GSL
- openmp
- HDF5
- polyglot
- mpi4py
- python
Archives
- Today
- Total
목록bash (1)
Astro Coke
[Bash] Bash scripting cheatsheet
source: https://devhints.io/bash Example #!/usr/bin/env bash NAME="John" echo "Hello $NAME!" Variables NAME="John" echo $NAME echo "$NAME" echo "${NAME}!" String quotes NAME="John" echo "Hi $NAME" #=> Hi John echo 'Hi $NAME' #=> Hi $NAME Shell execution echo "I'm in $(pwd)" echo "I'm in `pwd`" # Same See Command substitution Conditional execution git commit && git push git commit || echo "Commit..
Computer Setup
2019. 11. 3. 04:29