X7ROOT File Manager
Current Path:
/etc/profile.d
etc
/
profile.d
/
📁
..
📄
256term.csh
(771 B)
📄
256term.sh
(841 B)
📄
PackageKit.sh
(1.17 KB)
📄
abrt-console-notification.sh
(1.32 KB)
📄
bash_completion.sh
(660 B)
📄
colorgrep.csh
(196 B)
📄
colorgrep.sh
(201 B)
📄
colorls.csh
(1.7 KB)
📄
colorls.sh
(1.57 KB)
📄
csh.local
(80 B)
📄
flatpak.sh
(294 B)
📄
kde.csh
(848 B)
📄
kde.sh
(842 B)
📄
lang.csh
(1.67 KB)
📄
lang.sh
(2.64 KB)
📄
less.csh
(123 B)
📄
less.sh
(121 B)
📄
modules.csh
(1.05 KB)
📄
modules.sh
(168 B)
📄
qt-graphicssystem.csh
(313 B)
📄
qt-graphicssystem.sh
(379 B)
📄
qt.csh
(990 B)
📄
qt.sh
(919 B)
📄
sh.local
(81 B)
📄
vim.csh
(105 B)
📄
vim.sh
(269 B)
📄
vte.sh
(2.04 KB)
📄
which2.csh
(164 B)
📄
which2.sh
(169 B)
Editing: PackageKit.sh
# Copyright (C) 2008 Richard Hughes <richard@hughsie.com> # # Licensed under the GNU General Public License Version 2 # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. command_not_found_handle () { local runcnf=1 local retval=127 # only search for the command if we're interactive [[ $- =~ i ]] || runcnf=0 # don't run if DBus isn't running [[ ! -S /run/dbus/system_bus_socket ]] && runcnf=0 # don't run if packagekitd doesn't exist in the _system_ root [[ ! -x '/usr/libexec/packagekitd' ]] && runcnf=0 # don't run if bash command completion is being run [[ -n ${COMP_CWORD-} ]] && runcnf=0 # run the command, or just print a warning if [ $runcnf -eq 1 ]; then '/usr/libexec/pk-command-not-found' "$@" retval=$? elif [[ -n "${BASH_VERSION-}" ]]; then printf >&2 'bash: %scommand not found\n' "${1:+$1: }" fi # return success or failure return $retval } if [[ -n "${ZSH_VERSION-}" ]]; then command_not_found_handler () { command_not_found_handle "$@" && return 127 } fi
Upload File
Create Folder