⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.97
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
bash-completion
/
completions
/
View File Name :
pon
# Debian GNU/Linux pon/poff(1) completion # Copyright 2002 Baruch Even
# License: GNU GPL v2 or later _pon() { local cur conns [ -r /etc/ppp/peers/ ] || return 0 COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} conns=$(\ls --color=none /etc/ppp/peers | egrep -v '(\.bak|~)$') if [ $COMP_CWORD -eq 1 ]; then COMPREPLY=( $(compgen -o filenames -W "$conns" $cur) ) fi return 0 } complete -F _pon pon # vim:ft=sh: