Browse Source

Added sshfs mount commands I use to the commands file.

pull/11/head
jrtechs 6 years ago
parent
commit
055cc20cfd
2 changed files with 12 additions and 4 deletions
  1. +11
    -1
      src/commands
  2. +1
    -3
      src/roosay.py

+ 11
- 1
src/commands View File

@ -9,4 +9,14 @@ screen -X -S [session # you want to kill] quit
#ssh socks proxy
ssh -D 8123 -f -C -q -N sammy@example.com
ssh -D 8123 -f -C -q -N sammy@example.com
#!/bin/sh
echo starting to mount
sshfs -o allow_other jeff@192.168.1.2:/mnt/jeff/jeffery/ /home/jeff/media
sshfs -o allow_other public@192.168.1.2:/mnt/jeff/public/ /home/jeff/publicDrive
echo mount successful

+ 1
- 3
src/roosay.py View File

@ -19,11 +19,9 @@ def main():
message += sys.argv[i]
for line in sys.stdin:
message+= line.rstrip()
print(line)
message+= line
message = " ".join(message.split())
print(message)
roo_say(message)

Loading…
Cancel
Save