13 lines
402 B
Bash
Executable File
13 lines
402 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# klevstul :: 24.08
|
|
|
|
this_file_name=`basename "$0"`
|
|
echo "$this_file_name"
|
|
|
|
# note: it is possible to create sym links / soft links to non-existing directories! hence, this can be done without having started pcloud.
|
|
ln -s /home/poq/pCloudDrive/repos/git/gitlab.com ~/syncDir/gitRepos/
|
|
ln -s /home/poq/pCloudDrive/repos/pCloud_nonGit ~/syncDir/gitRepos/
|
|
|
|
ls -al ~/syncDir/gitRepos/
|