This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 用例 ./bisync.sh ./bricks | |
| # ./bisync.sh bricks c2:/home/ubuntu | |
| # dest : 远端路径 | |
| echo "number of args: $# ;;;;[$1] [$2]" | |
| # dest=ubuntu@asia2.bricksinfo.com:/home/ubuntu/workspace_panyong/ | |
| dest=c2:/home/ubuntu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.4.24; | |
| import "./ERC20.sol"; | |
| contract ArtToken is ERC20 { | |
| string public name = "ArtToken"; | |
| string public symbol = "CM01"; | |
| // uint public decimals = 18; | |
| uint public INITIAL_SUPPLY = 10000000 ; | |
| constructor() public { |