Compare commits
No commits in common. "632a0c674155c2f64a6816ed39dfd36906110e3a" and "25065ea70355a490ddbd6266aa6f692857ddf3bd" have entirely different histories.
632a0c6741
...
25065ea703
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,3 @@
|
|||||||
/backup
|
/backup
|
||||||
output.txt
|
output.txt
|
||||||
/.sublime
|
.bash_aliases_local
|
||||||
|
8
.sublime/sync.sublime-project
Normal file
8
.sublime/sync.sublime-project
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"folders":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path": ".."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
2478
.sublime/sync.sublime-workspace
Normal file
2478
.sublime/sync.sublime-workspace
Normal file
File diff suppressed because it is too large
Load Diff
@ -19,7 +19,6 @@ alias rsync_backup="rsync $DEFAULT_RSYNC --checksum --times --group --owner --de
|
|||||||
alias rsync_move="rsync $DEFAULT_RSYNC --checksum --remove-source-files"
|
alias rsync_move="rsync $DEFAULT_RSYNC --checksum --remove-source-files"
|
||||||
alias rsync_update="rsync $DEFAULT_RSYNC --update --times"
|
alias rsync_update="rsync $DEFAULT_RSYNC --update --times"
|
||||||
alias rsync_copy="rsync $DEFAULT_RSYNC --ignore-times"
|
alias rsync_copy="rsync $DEFAULT_RSYNC --ignore-times"
|
||||||
alias copy_link='cp --no-dereference --recursive --preserve=all --link' # not --force to make it optional
|
|
||||||
alias off='systemctl poweroff'
|
alias off='systemctl poweroff'
|
||||||
alias nnn='nnn -dHrR'
|
alias nnn='nnn -dHrR'
|
||||||
alias nn='n -dHrR'
|
alias nn='n -dHrR'
|
||||||
@ -30,19 +29,6 @@ alias mountdrive='udisksctl mount -b'
|
|||||||
alias unmountdrive='udisksctl unmount -b'
|
alias unmountdrive='udisksctl unmount -b'
|
||||||
alias fssizes='df -kh --output=size,used,avail,pcent,target | sort -hr'
|
alias fssizes='df -kh --output=size,used,avail,pcent,target | sort -hr'
|
||||||
alias dirsizes='du -kh --apparent-size --max-depth=1 | sort -hr'
|
alias dirsizes='du -kh --apparent-size --max-depth=1 | sort -hr'
|
||||||
# sed -ie 's/Beispiel/Ersetzung/' *.xml
|
|
||||||
# sed -Eie 's/(Beispiel)/\1Anhang/' *.xml
|
|
||||||
|
|
||||||
|
|
||||||
rsyncLink() {
|
|
||||||
source=$1;
|
|
||||||
linkSource="$(realpath $source)";
|
|
||||||
linkSource=${linkSource%/}; # cut off trailing "/"
|
|
||||||
shift;
|
|
||||||
dest=$1;
|
|
||||||
shift;
|
|
||||||
rsync $DEFAULT_RSYNC --one-file-system --link-dest=$linkSource $source $dest $*;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
updateSystem() {
|
updateSystem() {
|
||||||
@ -91,7 +77,7 @@ execute() {
|
|||||||
# executes command and notifies upon success or failure
|
# executes command and notifies upon success or failure
|
||||||
executeAndNotify () {
|
executeAndNotify () {
|
||||||
dir="$(pwd)";
|
dir="$(pwd)";
|
||||||
dir=${dir##*/}; # cut off previous path (/path/to/foo.txt -> foo.txt)
|
dir=${dir##*/};
|
||||||
if [[ -n "$2" ]]; then
|
if [[ -n "$2" ]]; then
|
||||||
winLog=$2;
|
winLog=$2;
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user