mirror of
https://github.com/DictXiong/dotfiles.git
synced 2025-04-25 06:26:51 +08:00
29 lines
416 B
Bash
29 lines
416 B
Bash
#!/bin/false "This script should be sourced in a shell, not executed directly"
|
|
|
|
set -ex
|
|
|
|
# check files
|
|
cd /
|
|
dfs cd
|
|
pwd
|
|
test -f .zshrc2
|
|
diff -q ./.ssh/authorized_keys2 ~/.ssh/authorized_keys2
|
|
grep -q ".zshrc2" ~/.zshrc
|
|
|
|
# check scripts and functions
|
|
dfs version
|
|
dfs log 1
|
|
l
|
|
dogo
|
|
tools/common.sh get_os_type
|
|
tools/common.sh get_linux_dist
|
|
|
|
# check alias
|
|
alias p114 > /dev/null
|
|
|
|
# check update
|
|
dfs update
|
|
dfs version
|
|
|
|
|