uawdijnntqw1x1x1
IP : 18.190.158.12
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
..
/
usr
/
bin
/
select-editor
/
/
#!/bin/sh # To generate localization information, run: # xgettext -o - -L Shell select-editor PATH=$PATH:/usr/sbin # Ensure that $HOME/.selected_editor is writeable touch $HOME/.selected_editor || exit 1 editors=`update-alternatives --list editor | wc -l` if [ $editors -gt 1 ]; then echo echo "`gettext 'Select an editor. To change later, run'`" "'select-editor'." i=0 editors=`update-alternatives --list editor` for e in $editors; do i=`expr $i + 1` desc= if [ $e = "/bin/nano" ]; then desc=" <---- ` gettext 'easiest'`" simple=$i fi echo " $i. $e$desc" done echo "" selected=x while /bin/true; do if [ -z "$selected" -a ! -z "$simple" ]; then selected="$simple" elif ! test $selected -gt 0 2>/dev/null; then echo -n "$(gettext 'Choose') 1-$i [$simple]: " read -r selected elif ! test $selected -le $i 2>/dev/null; then echo -n "$(gettext 'Choose') 1-$i [$simple]: " read -r selected else break fi done i=0 for e in $editors; do i=`expr $i + 1` if [ $i -eq $selected ]; then echo "# Generated by /usr/bin/select-editor" > $HOME/.selected_editor echo "SELECTED_EDITOR=\"$e\"" >> $HOME/.selected_editor && exit 0 fi done fi exit 1
/var/../usr/bin/select-editor