• 1 Post
  • 27 Comments
Joined 21 days ago
cake
Cake day: March 13th, 2025

help-circle
  • src/* will skip hidden files. You want rsync -avAXUNH src/ dst which copies contents of src into dst. Notice the trailing slash in src/. Without the slash, src is copied into dst so you end up with a src directory in dst. The AXUNH enables preserving more things. You might also add --delete if you’re updating the copy.

    PS. I should also mention how I end up with -avAXUNH. Simple:

    $ man rsync |grep ' -. *preserve'
           --hard-links, -H         preserve hard links
           --perms, -p              preserve permissions
           --executability, -E      preserve executability
           --acls, -A               preserve ACLs (implies --perms)
           --xattrs, -X             preserve extended attributes
           --owner, -o              preserve owner (super-user only)
           --group, -g              preserve group
           --times, -t              preserve modification times
           --atimes, -U             preserve access (use) times
           --crtimes, -N            preserve create times (newness)
    

    and then include all that. a covers some of those options and those don’t have to be set explicitly:

    $ man rsync |grep ' -a ' |head -n1
           --archive, -a            archive mode is -rlptgoD (no -A,-X,-U,-N,-H)
    




  • mina86@lemmy.wtfOPtoLinux@lemmy.mlIs Ctrl+D really like Enter?
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    4 days ago

    Yeah, it’s a bit philosophical.

    • In graphical applications, Ctrl+M, Ctrl+J and Return/Enter are all different things.
    • In a terminal in raw mode, Ctrl+M and Return/Enter are the same thing but Ctrl+J is something different. You can for example run bind -x '"\C-j":"echo a"' in bash and Ctrl+J will do something different.
    • In a terminal in canonical mode, they are all the same thing. There probably are some stty options which can change that though.





  • You want readlink -f rather than ls -l. ++OK, actually not exactly. readlink won’t print path to the symlink so it’s not as straightforward.++

    Also, you want + in find ... -exec ... + rather than ;.

    At this point I feel committed to making readlink work. ;) Here’s the script you want:

    #!/bin/sh
    
    want=$1
    shift
    readlink -f -- "$@" | while read got; do
    	if [ "$got" = "$want" ]; then
    		echo "$1"
    	fi
    	shift
    done
    

    and execute it as:

    find ~ -type l -exec /bin/sh /path/to/the/script /path/to/target/dir {} +
    




  • Everything you’re describing is further speculation and unfalsifiable statements for events which already have a simpler explanation. That’s a tell-tale sign of a conspiracy theory.

    Google buying the company as some kind of plot to get spies into Google requires more assumptions than Google buying the company for the technology (as it has done with plethora of other companies). If Google is somehow complicit in it, they could just hire those people directly. And if it’s all covert operation, Israel is capable of training and coaching their spies to pass Google’s interviews. Google interviews aren’t trivial, but it’s also not some super-elite company which hires only the top 0.01% of software engineers.

    If you want to convince me otherwise, you need to demonstrate why your explanation is more likely than the obvious one.








  • mina86@lemmy.wtftoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    arrow-up
    10
    ·
    edit-2
    12 days ago

    If you have an SVG image you can either embed it directly on the website, or link it using img tag. Whatever the case, there’s no need to export it to PNG.

    And yes, that will likely result in a smaller website and furthermore images which can scale smoothly.