Add just command for sshfs mount
This commit is contained in:
parent
fabb978e17
commit
cf2bf37ed8
3
red/.gitignore
vendored
3
red/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
target
|
||||
Cargo.lock
|
||||
Cargo.lock
|
||||
mount
|
||||
|
|
13
red/justfile
13
red/justfile
|
@ -1,10 +1,13 @@
|
|||
build:
|
||||
cargo build --target=armv7-unknown-linux-gnueabihf
|
||||
cargo build --target=armv7-unknown-linux-gnueabihf
|
||||
|
||||
rrun:
|
||||
#scp -r ./src olimex@muele.local:red/
|
||||
rsync -rvu --filter=':- .gitignore' ../red olimex@muele.local:
|
||||
ssh olimex@muele.local "cd red; /home/olimex/.cargo/bin/cargo run;"
|
||||
#scp -r ./src olimex@muele.local:red/
|
||||
rsync -rvu --filter=':- .gitignore' ../red olimex@muele.local:
|
||||
ssh olimex@muele.local "cd red; /home/olimex/.cargo/bin/cargo run;"
|
||||
|
||||
rdown:
|
||||
ssh olimex@muele.local "sudo /usr/sbin/poweroff"
|
||||
ssh olimex@muele.local "sudo /usr/sbin/poweroff"
|
||||
|
||||
mount:
|
||||
sshfs olimex@muele.local:/ mount
|
||||
|
|
Loading…
Reference in a new issue