Differences

This shows you the differences between the selected revisions of the page.

custom_commands 2020-12-28 custom_commands 2024-10-08 (current)
Line 108: Line 108:
touch -d "!?Date:!" !& touch -d "!?Date:!" !&
</code> </code>
 +
 +===== [[chmod]] Recursively Changing Permissions of Files or Folders only =====
 +For changing directory permissions:
 +<code custom-command-remote>
 +find ! -type d -exec chmod !?&Permissions:?755! {} \;
 +</code>
 +For changing file permissions:
 +<code custom-command-remote>
 +find ! -type f -exec chmod !?&Permissions:?644! {} \;
 +</code>
 +Check custom command options //Remote command// and //Apply to directories//.
===== Templates ===== ===== Templates =====
Line 159: Line 170:
==== Backup a File with Current Date and Time ==== ==== Backup a File with Current Date and Time ====
<code custom-command-remote> <code custom-command-remote>
-cp ! $(echo "!" | sed "s/\..*$//").$(date '+%Y-%m-%d_%H-%M').$(echo ! | awk -F"." '{ print $NF }')+cp ! $(echo "!" | sed "s/\.[^.]*$//").$(date '+%Y-%m-%d_%H-%M').$(echo ! | awk -F"." '{ print $NF }')
</code> </code>
==== Rename a File with Current Date and Time ==== ==== Rename a File with Current Date and Time ====
<code custom-command-remote> <code custom-command-remote>
-mv ! $(echo "!" | sed "s/\..*$//").$(date '+%Y-%m-%d_%H-%M').$(echo ! | awk -F"." '{ print $NF }')+mv ! $(echo "!" | sed "s/\.[^.]*$//").$(date '+%Y-%m-%d_%H-%M').$(echo ! | awk -F"." '{ print $NF }')
</code> </code>
Line 184: Line 195:
  * Connect at least once from an interactive terminal (such as [[&url(putty)|PuTTY SSH client]]) to verify the destination server host key.   * Connect at least once from an interactive terminal (such as [[&url(putty)|PuTTY SSH client]]) to verify the destination server host key.
  * Use for example [[ui_login_authentication#forwarding|Agent forwarding]] to forward your private key to the destination server for authentication.   * Use for example [[ui_login_authentication#forwarding|Agent forwarding]] to forward your private key to the destination server for authentication.
-  * Another less-secure method of authentication is use of ''[[https://sourceforge.net/projects/sshpass/|sshpass]]'' tool (see its [[&amp;man_ref(1,sshpass)|man page]]).+  * Another less-secure method of authentication is use of ''[[https://sourceforge.net/projects/sshpass/|sshpass]]'' tool (see its [[https://www.mankier.com/1/sshpass|man page]]).
===== [[compare]] File Compare ===== ===== [[compare]] File Compare =====

Last modified: by martin