r = requests.post('http://httpbin.org/post', data = {'key':'value'})
PermitUserRC
Specifies whether any ~/.ssh/rc file is executed. The default is “yes”.
ForceCommand
Forces the execution of the command specified by ForceCommand, ignoring any command supplied by the client and ~/.ssh/rc if present. The command is invoked by using the user's login shell with the -c option. This
applies to shell, command, or subsystem execution. It is most useful inside a Match block. The command originally supplied by the client is available in the SSH_ORIGINAL_COMMAND environment variable. Specifying a com‐
mand of “internal-sftp” will force the use of an in-process sftp server that requires no support files when used with ChrootDirectory. The default is “none”.
в чем может быть проблема?
mysqldump -uuser -p dbname > dump.sql
class S():
kk = 0
def m(self):
kk+=1
return self
def p(self):
print(self.kk)
return self
s = S().m().m().m().p().m().m().p()