Server IP : 51.89.169.208 / Your IP : 216.73.216.94 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
#compdef mysqldiff _mysqldiff () { _arguments -s \ {-h{,1,2},--host{,1,2}=}':server hostname:_mysql_hosts' \ {-p{,1,2},--password{,1,2}=}':server password: ' \ {-u{,1,2},--user{,1,2}=}':server username:_mysql_users' \ {-s{,1,2},--socket{,1,2}=}':server socket:_directories' \ {-d,--debug=}':debugging level (default 1):(1 2 3 4 5 6 7 8)' \ {-i,--tolerant}':ignore DEFAULT and formatting changes: ' \ {-k,--keep-old-tables}":don\'t output DROP TABLE commands: " \ {-n,--no-old-defs}"[don't output old defs as comments]" \ {-o,--only-both}'[only output changes for tables in both databases]' \ {-t,--table-re}':restrict comparisons to tables matching a regexp: ' \ {-A,--apply}':interactively patch database1 to match database2: ' \ {-\?,--help}'[display usage]' \ {1,2}':MySQL database:_mysql_db_or_file' } _mysql_db_or_file () { _alternative \ 'databases:MySQL databases:_mysql_databases' \ 'files:MySQL database definition files:_files -g "*.(my|)sql(-.)"' } _mysql_utils _mysqldiff "$@"