symlinkForIpfsEntry method
Implementation
Future<bool> symlinkForIpfsEntry(String cid, String xx64) async {
var shell = Shell();
final xxfy = await shell.run('''ln -s ''' +
Directory.current.path +
'''/uppity/ipfs/''' +
cid +
' ' +
Directory.current.path +
'/uppity/xx/' +
xx64);
return true;
}